/* Normalize */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    border: 0;
}

html,
body {
    width: 100%;
    height: 100%;
    font-size: 100%;
}

html {
    scroll-behavior: smooth;
    overflow-anchor: none;
}


*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

ol,
ul {
    list-style: none;
}

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

a,
a:visited {
    text-decoration: none;

}

a:hover {
    text-decoration: none;
}

a {
    color: inherit;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input,
button,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

caption,
th,
td {
    font-weight: normal;
    text-align: left;
    vertical-align: middle;
}

q,
blockquote {
    quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
    content: "";
    content: none;
}

a img {
    vertical-align: top;
    border: none;
}

aside,
details,
figcaption,
figure,
menu,
nav,
summary {
    display: block;
}

/* End Normalize */

/* Fonts */

@font-face {
    font-family: "Open Sans";
    font-display: swap;
    src: url("../fonts/OpenSans-Regular.woff") format("woff"), url("../fonts/OpenSans-Regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "Open Sans";
    font-display: swap;
    src: url("../fonts/OpenSans-Regular-Italic.woff") format("woff"), url("../fonts/OpenSans-Regular-Italic.woff2") format("woff2");
    font-style: italic;
    font-weight: 400;
}

@font-face {
    font-family: "Open Sans";
    font-display: swap;
    src: url("../fonts/OpenSans-SemiBold.woff") format("woff"), url("../fonts/OpenSans-SemiBold.woff2") format("woff2");
    font-style: normal;
    font-weight: 600;
}

@font-face {
    font-family: "Open Sans";
    font-display: swap;
    src: url("../fonts/OpenSans-Bold.woff") format("woff"), url("../fonts/OpenSans-Bold.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
}

/* End Fonts */

/* Typography */

body {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    color: #424242;
}

.h1,
h1 {
    margin-bottom: 30px;
    font-size: 2.25rem;
    line-height: 49px;
    font-weight: 700;
}

.h1--thin {
    margin-bottom: 21px;
    font-weight: 400;
    font-size: 32px;
    line-height: 44px;
    color: #424242;
}

h1.h1--thin {
    margin-bottom: 30px;
}

@media (max-width: 767.9px) {
    h1.h1--thin {
        margin-bottom: 20px;
    }
}

.h1__sub {
    font-size: 22px;
    line-height: 30px;

    color: #ACACAC;
}

/*
h2 {
    font-size: 36px;
    line-height: $base-line-height * 2;
    margin-bottom: $base-line-height;
    font-weight: bold;
}
*/

.h3,
h3 {
    font-weight: 600;
    font-size: 1.375rem;
    line-height: 40px;
}

/* End Typography */

/* Base styles */

img {
    max-width: 100%;
}

a {
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

a:hover {
    color: var(--color-contrast);
}

.orange-color {
    color: var(--color-primary);
}

.text_upp {
    text-transform: uppercase;
}

.mt-40 {
    margin-top: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-10 {
    margin-top: 10px;
}

.pt-10 {
    padding-top: 10px;
}

.main-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100%;
}

.main-content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 50px;
    padding-right: 50px;
}

.row-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.table-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.table-col-1_3 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(10.83333% - 30px);
}

.table-col-2 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(16.66667% - 30px);
}

.table-col-2_7 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(22.5% - 30px);
}

.table-col-4,
.col-4 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(33.33333% - 30px);
}

.col-3 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(25% - 30px);
}

.col-3_5 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(29.16667% - 30px);
}

.col-6 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(50% - 30px);
}

.col-8_5 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(70.83333% - 30px);
}

.col-9 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(75% - 30px);
}

.container-full {
    padding: 0;
    padding-left: 50px;
    padding-right: 50px;
}

.grey-block {
    padding: 24px;
    background-color: #f5f5f5;
    border-radius: 2px;
}

.grey-block:not(last-child) {
    margin-bottom: 12px;
}

.base-button {
    display: block;
    padding: 16px 64px;
    font-weight: 600;
    font-size: 0.875rem;
    color: #ffffff;
    background-color: var(--color-primary);
    border: 1px solid transparent;
    border-radius: 2px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    white-space: nowrap;
    appearance: none;
    -webkit-appearance: none;
}

.base-button--white {
    color: #1B3542;
    background-color: white;
}

.base-button[disabled] {
    background-color: #b1b1b1;
    cursor: not-allowed;
}

.base-button--contour {
    color: #1B3542;
    background-color: white;
    border-color: #b1b1b1;
}

@media (hover: hover) {
    .base-button:hover {
        background-color: var(--color-contrast);
    }

    .base-button--white:hover {
        background-color: #ffffff;
    }

    .base-button[disabled]:hover {
        background-color: #b1b1b1;
    }

    .base-button--contour:hover {
        color: var(--color-contrast);
        border-color: var(--color-contrast);
        background-color: #ffffff;
    }
}

.card__tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* overflow-x: auto; */
    width: 100%;
    border-bottom: 1px solid #e4e4e4;
}

.card__tabs[data-simplebar] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.card__tabs .simplebar-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.pay-delivery .card__tabs .simplebar-content {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.simplebar-track.simplebar-horizontal {
    opacity: 0;
}

.tabs__input {
    display: none;
}

.tabs__section {
    padding: 20px 0 22px 0;
}

.tabs__button {
    position: relative;
    display: inline-block;
    margin-right: 20px;
    padding-bottom: 15px;
    white-space: nowrap;
    font-weight: 700;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.25;
    border: none;
    background-color: transparent;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    cursor: pointer;
    color: #424242;
}

.tabs__button::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background-color: var(--color-primary);
    opacity: 0;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.tabs__button[aria-selected="true"] {
    color: var(--color-primary);
}

.tabs__button[aria-selected="true"]::after {
    opacity: 1;
}

.tabs #delivery-check:checked ~ #delivery,
.tabs #availability-check:checked ~ #availability,
.tabs #all-check:checked ~ #all,
.tabs #smartphones-check:checked ~ #smartphones,
.tabs #accessories-check:checked ~ #accessories {
    display: block;
}

.tabs #delivery-pickup-check:checked ~ #delivery-pickup,
.tabs #payment-method-check:checked ~ #payment-method {
    display: block !important;
}

.f-normal {
    font-weight: 400 !important;
}

.divider {
    border-bottom: 1px solid #d9d9d9;
}

.divider--margin-bottom {
    margin-top: 0 !important;
    margin-bottom: 75px;
}

.search {
    width: 100%;
    padding: 12px 42px 12px 18px;
    background-color: #f5f5f5;
    border-radius: 2px;
    border: none;
    font-size: 0.875rem;
    color: #424242;
}

.search::-webkit-input-placeholder {
    color: #ACACAC;
}

.search::-moz-placeholder {
    color: #ACACAC;
}

.search:-ms-input-placeholder {
    color: #ACACAC;
}

.search::-ms-input-placeholder {
    color: #ACACAC;
}

.search::placeholder {
    color: #ACACAC;
}

.custom-checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    cursor: pointer;
}

.custom-checkbox--hidden {
    width: 0;
    height: 0;
    visibility: hidden;
    margin: 0;
}

.custom-checkbox--hidden:checked ~ .custom-checkbox__pseudo {
    background-color: var(--color-primary);
}

.custom-checkbox--hidden:checked ~ .custom-checkbox__pseudo::before {
    opacity: 1;
}

.custom-checkbox__pseudo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-right: 17px;
    padding: 1px;
    background-color: #f5f5f5;
    border-radius: 2px;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.custom-checkbox__pseudo::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background: url(../img/icons/check.svg) no-repeat center/contain;
    opacity: 0;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.badge {
    /* padding: 2px 10px 4px; */
    font-size: .8125rem;
    line-height: 20px;
    color: #fff;
    white-space: nowrap;
    border-radius: 2px;
    /* cursor: pointer; */
    /*position: relative;*/
    margin-bottom: 5px;
}


.badges .badge-name {
    display: inline-block;
    padding: 3px 10px 3px 11px;
}

.badges .badge-name:hover {
    color: #fff;
}

.badges span.badge-info_icon {
    display: inline-block;
    width: 19px;
    text-align: center;
    height: 19px;
    border: 2px #fff solid;
    border-radius: 50%;
    margin-right: 3px;
    margin-top: 3px;
    font-size: 13px;
    line-height: 14px;
    font-weight: bold;
    cursor: pointer;
}

.badge .badge_description {
    display: none;
    position: absolute;
    z-index: 15;
    bottom: 0;
    left: 0;
    color: #000;
    background: #fff;
    padding: 10px;
    white-space: break-spaces;
    text-align: justify;
    border: 1px solid rgba(66, 66, 66, 0.1);
    width: 250px;
    transform: translateY(100%);
}

.badge:hover .badge_description,
.badge .badge_description.active {
    display: block;
}

.badge--orange {
    background-color: var(--color-primary);
}

.badge--red {
    background-color: #E30613;
}

.badge--purpure {
    background-color: #6D6DCF;
}

.badge--light-grey {
    color: #E30613;
    background-color: #F0F0F0;
}

.show-more {
    position: relative;
    width: 26px;
    height: 26px;
    padding: 7px;
    background-color: #f5f5f5;
    border-radius: 2px;
    cursor: pointer;
}

.show-more svg {
    display: block;
    width: 11px;
    height: 11px;
    fill: #ACACAC;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.show-more:hover svg {
    fill: var(--color-primary);
}

.show-more.active svg {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    fill: var(--color-primary);
}

.action-time svg {
    margin-right: 9px;
    margin-top: -9px;
}

.action-time .text {
    margin-right: 12px;
    width: 95px;
    font-weight: 600;
    font-size: 0.6875rem;
    line-height: 14px;
    color: #454545;
}

.action-time .clock .days,
.action-time .clock .hours,
.action-time .clock .minutes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.action-time .clock .days span,
.action-time .clock .hours span,
.action-time .clock .minutes span {
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    color: #454545;
}

.action-time .clock .days div,
.action-time .clock .hours div,
.action-time .clock .minutes div {
    font-weight: 400;
    font-size: 0.5625rem;
}

.action-time .clock .divider {
    margin: -5px 9px 0 9px;
    font-size: 1.5rem;
    color: #ACACAC;
    border-bottom: 0;
}

.payment-variants {
    cursor: pointer;
    position: relative;
}

.payment-variants__title {
    width: 90%;
    overflow: hidden;
    font-size: 0.75rem;
    line-height: 18px;
    color: #ACACAC;
}

.payment-variants__icon svg {
    width: 8px;
    height: 8px;
    fill: #ACACAC;
}

.payment-variants__current {
    font-size: 0.875rem;
    line-height: 20px;
    color: #424242;
}

.payment-variants__select {
    position: absolute;
    /* top: 77px; */
    top: 56px;
    left: -1px;
    z-index: 15;
    overflow: hidden;
    overflow-y: auto;
    display: none;
    width: calc(100% + 1px);
    height: 315px;
    padding: 19px;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    scrollbar-color: var(--color-primary) transparent;
    scrollbar-width: thin;
}

.payment-variants__select .payment-variants__select-content:last-child {
    margin-bottom: 0;
}

.payment-variants__select .payment-variants__select-content:last-child .payment-variants__select-item:last-child {
    margin-bottom: 0;
}

.payment-variants__select::-webkit-scrollbar {
    width: 3px;
    background-color: transparent;
    border-radius: 90px;
}

.payment-variants__select::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
    border-radius: 90px;
}

.payment-variants__select-content {
    margin-bottom: 30px;
}

.payment-variants__select-item {
    margin-bottom: 23px;
}

.payment-variants__select-title {
    margin-bottom: 14px;
    padding-bottom: 10px;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 20px;
    color: #424242;
    border-bottom: 1px solid #d9d9d9;
}

.payment-variants__select-text {
    margin-bottom: 5px;
    color: #424242;
}

.payment-variants__select-text.selected {
    color: var(--color-primary);
}

.payment-variants__select-description {
    font-weight: 400;
    font-size: 0.75rem;
    color: #a4a4a4;
}

.payment-variants__select-description span {
    font-weight: 700;
}

.payment-variants.open svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.payment-variants.open .payment-variants__select {
    display: block;
}

.payment-info {
    font-size: 0.875rem;
}

.card__price .payment-info__price.items-end {
    margin-left: 3px;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.card__price .payment-info__price {
    margin-bottom: 6px;
}

.payment-info__price {
    margin-bottom: 7px;
    font-weight: 700;
}


.payment-info__rate-price {
    margin-top: 5px;
    font-weight: 350;
    font-size: 15px;
}

span.old {
    vertical-align: top;
}

.payment-info__price .current {
    margin-right: 12px;
    font-size: 2.125rem;
    white-space: nowrap;
}

.payment-info__price .old {
    margin-right: 6px;
    color: #808080;
    font-size: 1rem;
    text-decoration: line-through;
    white-space: nowrap;
}

.payment-info__price .sale {
    font-size: 1rem;
    color: var(--color-primary);
    white-space: nowrap;
}

.payment-info__available {
    position: relative;
    margin-bottom: 24px;
    padding-left: 14px;
    line-height: 20px;
}

.payment-info__available:before {
    content: '';
    position: absolute;
    top: calc(50% - 3px);
    left: 0;
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #00b407;
}

.payment-info__available a {
    color: var(--color-primary);
}

.payment-info__payment-variants {
    margin-bottom: 24px;
    padding: 12px 19px;
    background-color: #ffffff;
    border-radius: 2px;
}

.payment-info__add {
    margin-bottom: 24px;
    column-gap: 10px;
}

.payment-info__add .add-to-card {
    display: block;
    width: 100%;
    height: 52px;
    padding: 16px 42px 16px 45px;
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    background-color: var(--color-primary);
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    color: #ffffff;
    border-radius: 2px;
    white-space: nowrap;
}

.catalog__main .payment-info__add .btn-default {
    display: block;
    height: 42px;
    padding: 11px 15px;
    font-weight: 600;
    font-size: 12px;
    border: none;
    background-color: var(--color-primary);
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    color: #ffffff;
    border-radius: 2px;
    white-space: nowrap;
}

.payment-info__add .add-to-card svg {
    margin-right: 8px;
    fill: currentColor;
    vertical-align: middle;
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
}

.payment-info__add .add-to-card:not([disabled]):hover, .payment-info__add .btn-default:hover {
    background-color: var(--color-contrast);
}


.payment-info__add .buy-one-click {
    width: 52px;
    height: 52px;
    padding: 5px;
    color: var(--color-primary);
    border-radius: 2px;
    border: 1px solid var(--color-primary);
    background-color: transparent;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    flex-shrink: 0;
}

.payment-info__add .buy-one-click svg {
    fill: currentColor;
    pointer-events: none;
}

.payment-info__add .buy-one-click:hover {
    color: white;
    background-color: var(--color-primary);
}

.payment-info__bonuses {
    position: relative;
}

.payment-info__bonuses span {
    font-weight: 700;
}

.payment-info__bonuses svg {
    margin-left: 10px;
    cursor: pointer;
}

.payment-info__bonuses svg:hover circle,
.payment-info__bonuses svg:hover line {
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    stroke: var(--color-contrast);
}

.bonuses {
    font-size: 0.875rem;
    line-height: 19px;
}

.bonuses .row:not(last-child) {
    margin-bottom: 7px;
}

.bonuses.grey-block {
    padding: 28px 24px 26px;
}

.bonuses span {
    font-weight: 700;
}

.bonuses strong {
    font-weight: 700;
    font-size: 1.25rem;
}

/* .color-circles__item {
  width: 46px;
  height: 46px;
  padding: 4px;
  border: 1px solid transparent;
  border-radius: 50%;
}

.color-circles__item:not(last-child) {
  margin-right: 20px;
}

.color-circles__item span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.color-circles__item.active {
  border: 1px solid var(--color-primary);
} */

.gift__title {
    position: relative;
    margin-bottom: 12px;
    padding-left: 24px;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--color-primary);
}

.gift__title:before {
    content: url(../img/icons/gift.svg);
    position: absolute;
    top: calc(50% - 11px);
    left: 0px;
}

.gift__body {
    padding: 24px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 2px;
}

.gift__body img {
    width: 28px;
    height: 28px;
    margin-right: 12px;
    object-fit: cover;
}

.gift__body .text {
    font-size: 0.75rem;
    color: #808080;
}

.main-specifications {
    font-size: 0.875rem;
}

.main-specifications__row:not(last-child) {
    margin-bottom: 12px;
}

.main-specifications__row:nth-child(n+4) {
    display: none;
}

.main-specifications__row.is-visible {
    display: flex;
}

.main-specifications__name {
    margin-right: 4px;
    max-width: 45%;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    color: #808080;
}

.main-specifications__value {
    color: #424242;
}

.main-specifications__list li {

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    color: #808080;
}

.main-specifications__list li:not(last-child) {
    margin-bottom: 12px;
}

.main-specifications__list li::before {
    content: '';
    border-bottom: 1px dashed #DCDCDC;
    flex-grow: 1;
    order: 2;
    margin: 0 5px;
}

.main-specifications__list li.is-visible {
    display: flex;
}

.main-specifications__list .value {
    order: 3;
    color: #424242;
    margin-left: 3px;
    padding-right: 15px;
}

.main-specifications__all, .more-haracter-mobile {
    font-size: 14px;
    padding-bottom: 1px;
    color: var(--color-primary);
    border-bottom: 1px solid transparent;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    text-transform: none;
}

.main-specifications__all:hover, .more-haracter-mobile:hover {
    border-bottom: 1px solid #ebe9e9;
}

.input-label {
    margin-bottom: 2px;
    font-size: 0.75rem;
    line-height: 1.67;
    color: #454545;
}

.input-label sup {
    color: var(--color-primary);
}

.base-input,
.base-textarea {
    width: 100%;
    padding: 12px 17px;
    font-size: 0.875rem;
    border-radius: 2px;
    border: 1px solid transparent;
}

.reviews__form-row .base-textarea {
    width: 100%;
    resize: none;
}

.base-input.notRequired,
.base-textarea.notRequired {
    border: 1px solid var(--color-primary);
}

.base-textarea {
    height: 86px;
}

.button {
    height: 52px;
    padding: 15px 16px 17px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    text-align: center;
    background-color: var(--color-primary);
    border: none;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    cursor: pointer;
}

.link {
    font-weight: 400;
    color: var(--color-primary);
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.form__submit {
    display: block;
    width: 100%;
}

.card-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 8px 8px 12px 8px;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 2px;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    min-height: 548px;
    /* min-height: 100%; */
    height: 100%;
}

.recently .card-item:hover {
    border: 1px solid #ffffff;
}

.card-item:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 2px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .25s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
}

.card-item:hover {
    border: 1px solid #ffffff;
    z-index: 20;
    /*тень временно убрали*/
    /* -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); */
}

.card-item:hover:before {
    opacity: 1;
    visibility: visible;
}

.card-item__header {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.compare__table .card-item__header {
    top: 13px;
    right: 9px;
}

.card-item__to-favorites,
.card-item__to-compare,
.card-item__remove {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    color: #D9D9D9;
    border: none;
    background-color: transparent;
    cursor: pointer;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.card-item__to-favorites svg {
    stroke: currentColor;
    fill: none;
}

.card-item__to-compare svg,
.card-item__remove svg {
    fill: currentColor;
}

.card-item__to-favorites.active,
.card-item__to-compare.active,
.card-item__remove.active {
    color: var(--color-primary);
}

.card-item__to-favorites.active svg {
    fill: currentColor;
}

.card-item .card-item__to-favorites {
    margin-bottom: 18px;
}

.card-item__badges {
    position: relative;
}

.card-item__badges .badges__hidden {
    bottom: 0;
    top: 34px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 10px;
    background-color: #ffffff;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

.card-item__badges .badges__hidden .badge {
    margin-bottom: 8px;
}

.card-item__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 22px;
    padding: 7px 0 20px;
    border-bottom: 1px solid #ebebeb;

}

.card-item__img {
    height: 256px;
}

.card-item__img img {
    max-width: 226px;
    width: 100%;
    height: 230px;
    height: 100%;
    object-fit: contain;
}

.card-item__reviews {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 6px;
    padding-bottom: 4px;
}

.card-item__reviews a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    line-height: 19px;
    color: var(--color-primary);
    white-space: nowrap;
}

.card-item__reviews a svg {
    width: 15px;
    height: 14px;
    margin-right: 6px;
    stroke: currentColor;
    fill: none;
}

.card-item__reviews .stars {
    margin-left: 18px;
    display: flex;
    column-gap: 2px;
}

.card-item__part-number {
    margin-bottom: 12px;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    color: #ACACAC;
}

.card-item__title {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-bottom: 20px;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    color: #424242;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-item__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: auto;
}

.card-item__footer .payment__info,
.card-item__footer .payment-info {
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 10px;
}

.card-item__footer .add-to-card {
    flex-grow: 1;
    height: 42px;
    padding: 11px 15px;
    font-size: 12px;
    white-space: nowrap;
    text-align: center;
}

.add-to-card[disabled] {
    color: #878787;
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.card-item__footer .payment-info__price {
    margin-bottom: 0;
    width: 100%;
}

.card-item__footer .payment-info__price .current {
    font-size: 22px;
    line-height: 28px;
}

.card-item__footer .payment-info__add {
    width: 100%;
    margin-bottom: 0;
}

.card-item__footer .buy-one-click {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    /* margin-left: 6px; */
}

.custom-select {
    position: relative;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.custom-select__title {
    overflow: hidden;
    font-size: 0.875rem;
}

.custom-select__icon {
    margin-left: 6px;
    margin-top: -3px;
}

.custom-select__icon svg {
    width: 8px;
    height: 8px;
    fill: var(--color-primary);
}

.custom-select__current {
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 20px;
    color: #424242;
}

.custom-select__select {
    position: absolute;
    top: 30px;
    right: 0;
    z-index: 15;
    overflow: hidden;
    overflow-y: auto;
    display: none;
    padding: 23px 23px 13px 23px;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 4px 40px rgba(162, 170, 181, 0.2);
    box-shadow: 0px 4px 40px rgba(162, 170, 181, 0.2);
    border-radius: 3px;
}

.custom-select__select-item {
    margin-bottom: 10px;
}

.custom-select__select-title {
    margin-bottom: 14px;
    padding-bottom: 10px;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 20px;
    color: #424242;
}

.custom-select__select-text {
    font-size: 0.875rem;
    color: #424242;
}

.custom-select__select-text.selected {
    color: var(--color-primary);
}

.custom-select__select-description {
    font-weight: 400;
    font-size: 0.75rem;
    color: #a4a4a4;
}

.custom-select__select-description span {
    font-weight: 700;
}

.custom-select__input {
    position: absolute;
    z-index: -1;
    display: block;
    width: 0;
    height: 0;
    visibility: hidden;
    margin: 0;
    font-size: 0;
}

.custom-select.open svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.custom-select.open .custom-select__select {
    display: block;
}

.question {
    position: relative;
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}

.question:hover .question__tooltip {
    display: block;
}

.question:hover::before {
    display: block;
}

.question::before {
    display: none;
    content: '';
    position: absolute;
    top: 18px;
    left: 2px;
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-right-width: 17px;
    border-left-width: 17px;
    border-bottom: 12px solid #ffffff;
}

.question__tooltip {
    display: none;
    position: absolute;
    top: 28px;
    left: -160px;
    z-index: 3;
    width: 311px;
    padding: 23px 26px;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 20px;
    color: #424242;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.05);
}

.question__tooltip a {
    display: block;
    margin-top: 8px;
    color: var(--color-contrast);
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.direction-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.no-wrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.items-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

#map {
    height: 100% !important;
    min-height: 100% !important;
}

.star {
    fill: #D9D9D9;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.star-full {
    fill: var(--color-contrast);
}

.form__group {
    position: relative;
    padding-bottom: 20px;

}

.form__info.info {
    margin-top: 20px;
}

.input__error {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #E30613;
    font-size: 0.75rem;
    line-height: 1;
    opacity: 0;
}

.base-input.error {
    border-color: #E30613;
}

.base-input.error ~ .input__error {
    opacity: 1;
}

.white-bg {
    background-color: #ffffff;
}

.gray-bg {
    background-color: #f5f5f5;
}

.main-content {
    padding-top: 40px;
}

/* End Base styles */

/* MAIN STYLES */

.header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
    font-size: 0.875rem;
    -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.07);
    background-color: #ffffff;
}

.header__top {
    padding: 10px 0;
    font-size: 0.8125rem;
    color: #ffffff;
    background-color: var(--color-grey);
}

.header__top a:hover {
    color: var(--color-secondary);
}

.header__top-location {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 30px;
    padding-right: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.header__top-location-button {
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.header__top-location svg {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 6px;
    fill: currentColor;
}

.header__top-menu {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.header__top-menu li:not(:last-child) {
    margin-right: 30px;
}

.header__top-nav {
    font-weight: 600;
}

.feedback__form_form {
    width: 35%;
    display: flex;
    flex-direction: column;
}

.feedback__form_form .feedback_button input {
    cursor: pointer;
    display: block;
    padding: 16px 64px;
    font-weight: 600;
    font-size: 0.875rem;
    color: #ffffff;
    background-color: var(--color-primary);
    border: 1px solid transparent;
    border-radius: 2px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    white-space: nowrap;
    appearance: none;
    -webkit-appearance: none;
}

.feedback__form .inputtext {
    width: 100%;
    padding: 12px 17px;
    font-size: 0.875rem;
    border-radius: 2px;
    border: 1px solid transparent;
    background-color: #F5F5F5;
}

.feedback__form .inputtextarea {
    width: 100%;
    padding: 22px 27px;
    font-size: 0.875rem;
    border-radius: 2px;
    border: 1px solid transparent;
    background-color: #F5F5F5;
    resize: none;
}

.feedback__form .footer__col-item-requisites-title {
    margin-top: 50px;
    margin-bottom: 30px;
}

.feedback__form .footer__col-item a {
    color: #999999;
}

.feedback__form .shops__button {
    border: 1px solid var(--color-primary);
    background-color: #fff !important;
    padding: 5px 22px;
    height: 34px;
    margin: 0 0 8px;
    font-weight: bold;
    border-radius: 2px;
    letter-spacing: .5px;
    color: var(--color-primary) !important;
}

.feedback__form .shops__button:hover {
    background-color: var(--color-primary) !important;
    color: #fff !important;
}

.feedback__form .base-input {
    background-color: #F5F5F5;
}

.feedback__form {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.feedback__form .footer__col-item--mail a,
.footer__col-item--time span,
.footer__col-item--phone a {
    color: #CCC;
}

.feedback__form .footer__col-item {
    font-size: 1rem;
}

.feedback__form .footer__col-item {
    color: #999999;
}

.feedback__form_form .feedback_button input {
    cursor: pointer;
    display: block;
    padding: 16px 64px;
    font-weight: 600;
    font-size: 0.875rem;
    color: #ffffff;
    background-color: var(--color-primary);
    border: 1px solid transparent;
    border-radius: 2px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    white-space: nowrap;
    appearance: none;
    -webkit-appearance: none;
}

.header__top-nav a,
.header__top-nav span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 40px;
}

.header__top-nav a svg,
.header__top-nav span svg {
    width: 16px;
    height: 16px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 6px;
    fill: currentColor;
}

.header__main {
    position: relative;
    padding: 19px 0 8px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header .card__price-icons-item {
    margin-left: 62px;
    position: relative;
}

.header .card__price-icons-item .badge {
    position: absolute;
    top: -2px;
    left: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    padding: 2px 1px 1px;
    font-weight: 700;
    font-size: 9px;
    line-height: 12px;
    color: #ffffff;
    background-color: var(--color-primary);
    border-radius: 50%;
    border: 1px solid white;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
}

.header .card__price-icons-item svg {
    width: 24px;
    height: 24px;
    fill: var(--color-primary);
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.header .card__price-icons-item:hover svg {
    fill: var(--color-contrast);
}

.header__logo {
    max-width: 138px;
    width: 100%;
    max-height: 33px;
    height: 100%;
    margin-right: 70px;
}

.header__catalog {
    margin-right: 18px;
    padding: 10px 23px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: 42px;
}

.header__catalog span {
    pointer-events: none;
}

.burger {
    position: relative;
    display: block;
    width: 15px;
    height: 12px
}

.burger__line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background-color: currentColor;
    border-radius: 90px;
    transition: transform .25s ease
}

.burger__line:first-child {
    top: 0
}

.burger__line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.burger__line:nth-child(3) {
    bottom: 0
}

[aria-expanded=true] .burger__line:nth-child(2) {
    opacity: 0
}

[aria-expanded=true] .burger__line:first-child {
    transform: rotate(45deg) translate(1px, -1px);
    transform-origin: left top
}

[aria-expanded=true] .burger__line:nth-child(3) {
    transform: rotate(-45deg) translate(1px, 1px);
    transform-origin: left bottom
}

.header__catalog .burger {
    margin-right: 6px;

    color: white;
}

.header__catalog:hover {
    color: #ffffff;
}

.header__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: 42px;
}

.header__search {
    max-width: 542px;
    width: 100%;
}

.header__search .modal__form-label {
    position: relative;
    width: 100%;
}

.header__search .modal__form-button {
    position: absolute;
    right: 14px;
    top: 3px;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    background-color: transparent;
}

.header__bottom-menu {
    position: relative;
    padding: 8px 0 14px 0;
}

.header__bottom-menu--swiper .swiper-wrapper {
    width: calc(100% - 56px);
    margin: 0 auto;
}

.header__bottom-menu--swiper .swiper-slide {
    -ms-flex-negative: 1;
    flex-shrink: 1;
}

.header__bottom-menu--swiper a {
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #424242;
    white-space: nowrap;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.header__bottom-menu--swiper a:hover {
    color: var(--color-primary);
}

.header__contacts-mobile {
    position: absolute;
    right: 0;
    top: 26px;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__contacts-mobile a {
    margin-left: 24px;
}

.header__contacts-mobile svg {
    width: 20px;
    height: 20px;
    fill: #424242;
}

.header .swiper-button-prev-header,
.header .swiper-button-next-header {
    position: absolute;
    z-index: 3;
    top: calc(50% - 15px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background-color: #f5f5f5;
    border-radius: 50%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    cursor: pointer;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.header .swiper-button-prev-header svg,
.header .swiper-button-next-header svg {
    width: 11px;
    height: 11px;
    fill: #ACACAC;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.header .swiper-button-prev-header {
    /* left: -23px; */
    left: -9px;
}

.header .swiper-button-prev-header svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.header .swiper-button-next-header {
    right: -8px;
}

.breadcrumbs {
    margin-bottom: 7px;
    color: #808080;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.breadcrumbs__item {
    position: relative;
    font-size: 13px;
    line-height: 16px;
    padding-left: 0;
    /* white-space: nowrap; */
    letter-spacing: 0.03em;
}

.breadcrumbs__item:after {
    content: url(../img/icons/arrow-right.svg);
    position: absolute;
    top: 1px;
    right: 0;
    width: 16px;
    height: 16px;
}

.breadcrumbs__item:last-child, .breadcrumbs__item:only-child {
    color: #C5C5C5;
}

.card-detail .breadcrumbs__item {
    white-space: nowrap;
}

.card-detail .breadcrumbs__item:last-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.breadcrumbs__item:last-child::after,
.breadcrumbs__item:only-child::after {
    display: none;
}

.breadcrumbs__item a {
    color: #808080;
}

.breadcrumbs__item a:not(last-child) {
    margin-right: 25px;
}

.card-detail .h1--thin.card__title {
    font-weight: 700;
    font-size: 38px;
    line-height: 52px;
    margin-bottom: 30px;
    letter-spacing: -0.01em;
}

/* .card-detail .breadcrumbs__item  {
  white-space: nowrap;
} */
/* .card-detail .breadcrumbs__item:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
} */
.card__header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(66, 66, 66, 0.1);
}

.card-detail .h1--thin {
    font-size: 28px;
    margin-bottom: 13px;
}

.card__header .badges {
    position: relative;
}

/*.card__header .badge {*/
/*  padding: 3px 10px 4px 11px;*/
/*}*/

.card__header .badge {
    padding: 0px;
}

.card__header-badges .badges__hidden {
    position: absolute;
    top: 100%;
    bottom: auto;
    z-index: 4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*background-color: #ffffff;*/
    background-color: transparent;
    height: auto;
    padding-bottom: 0;
    padding-top: 10px;
}

.card__header-badges .badges__hidden.hidden {
    display: none;
}

.card__header-badges .badge:not(:last-child) {
    margin-right: 10px;
}

.card__header-actions {
    font-size: 0.8125rem;
    line-height: 18px;
}

.card__header--reviews {
    padding-left: 10px;
}

.card__header--reviews a {
    margin-top: -1px;
    padding-left: 12px;
}

.card__header--number {
    margin-left: 40px;
}

.card__header--number span {
    margin-left: 4px;
    font-weight: 600;
}

.card__header--favorites,
.card__header--compare {
    position: relative;
    margin-left: 40px;
}

.card__header--favorites a,
.card__header--compare a {
    position: relative;
    padding-left: 26px;
}

.card__header--favorites a .active,
.card__header--compare a .active,
.card__header--favorites a.active .default,
.card__header--compare a.active .default {
    display: none;
}

.card__header--favorites a.active .active,
.card__header--compare a.active .active {
    display: inline;
}

.card__header--favorites a svg,
.card__header--compare a svg {
    position: absolute;
    top: 0;
    left: 0;

    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.card__header--favorites a svg {
    stroke: var(--color-primary);
    fill: none;
}

.card__header--compare a svg {
    fill: var(--color-primary);
}

.card__header--favorites a.active,
.card__header--compare a.active {
    color: var(--color-primary);
}

.card__header--favorites a.active svg {
    fill: var(--color-primary);
}

.card__header--favorites a:hover svg {
    stroke: var(--color-contrast);
}

.card__header--compare a:hover svg,
.card__header--favorites a.active:hover svg {
    fill: var(--color-contrast);
}

.card__main {
    margin: 28px 0 24px;
}

.card__slider {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
    overflow: hidden;
    margin-right: 24px;
    /* padding-top: 28px; */
    padding-top: 0;
    padding-bottom: 28px;
    /* max-height: 490px; */
}

.card__slider .card__slider--thumbs {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: calc(16% - 20px);
    margin-right: 20px;
    height: 490px;
}

.card__slider .card__slider--thumbs .swiper-wrapper {
    margin: 16px 0;
    padding-bottom: 28px;
}

.card__slider .card__slider--thumbs .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

.card__slider .card__slider--thumbs img {
    width: 53px;
    height: 53px;
    -o-object-fit: contain;
    object-fit: contain;
}

.card__slider .card__slider--thumbs .swiper-button-prev-th,
.card__slider .card__slider--thumbs .swiper-button-next-th {
    position: absolute;
    cursor: pointer;
    z-index: 2;
    width: 100%;
    height: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #fff;
}

.card__slider .card__slider--thumbs .swiper-button-prev-th:hover svg line,
.card__slider .card__slider--thumbs .swiper-button-next-th:hover svg line {
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    stroke: var(--color-primary);
}

.card__slider .card__slider--thumbs .swiper-button-prev-th {
    top: 0;
}

.card__slider .card__slider--thumbs .swiper-button-next-th {
    bottom: 0;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.card__slider .card__slider--main {
    float: right;
    max-width: 424px;
    height: 490px;
    width: 100%;
}

.card__slider .card__slider--main .swiper-pagination {
    display: none;
}

.card__slider .card__slider--main .swiper-pagination .swiper-pagination-bullet {
    width: 11px;
    height: 3px;
    border-radius: 0;
}

.card__slider .card__slider--main .swiper-pagination .swiper-pagination-bullet-active {
    width: 25px;
    background: var(--color-primary);
}

.card__slider .card__slider--main img {
    width: 100%;
    /* height: auto;
  object-fit: cover; */
    height: 100%;
    object-fit: contain;
    max-height: 100%;
}

.card__slider .card__slider--main .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.card__features {
    max-width: 403px;
    width: 100%;
    margin-right: 30px;
}

.card__features-item {
    margin-bottom: 40px;
}

.card__features-item-title {
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 0.875rem;
}

.card__features-item-title span {
    font-weight: 400;
    color: #808080;
}

.card__features-item-body .gift__body {
    padding: 16px;
}

.card__features-item-body .badge {
    padding: 5px 9px;
    font-size: 0.875rem;
    color: #808080;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 2px;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.card__features-item-body .badge:not(last-child) {
    margin-right: 8px;
}

.card__features-item-body .badge:hover {
    border-color: var(--color-primary);
}

.card__features-item-body .badge.active {
    border-color: var(--color-primary);
}

.card__features-item-body .color-circles {
    margin-bottom: 20px;
}

.card__price {
    max-width: 310px;
    width: 100%;
    padding-top: 8px;
}

.card__price .grey-block.card__price-action-time {
    padding: 18px 28px;
    justify-content: space-between;
}

.card__price .grey-block:not(last-child) {
    margin-bottom: 10px;
}

.card__price .payment-info.grey-block {
    padding: 23px 27px 31px 28px;
}

.card__price .grey-block.card__price-action-time .items-center {
    column-gap: 2px;
}

.card__promotion {
    margin-top: 45px;
}

.card__promotion--mobile {
    display: none;
}

.card__promotion-body {
    border: 1px solid #e6e6e6;
    border-radius: 2px;
}

.card__promotion-nav {
    position: relative;
    padding: 24px;
    border-right: 1px solid #e6e6e6;
}

.card__promotion-title {
    height: 100%;
    font-size: 1.75rem;
    line-height: 36px;
    color: #454545;
}

.card__promotion-item {
    position: relative;
    max-width: 387px;
    width: 100%;
    height: 100%;
    padding: 24px 28px;
    border-right: 1px solid #e6e6e6;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.card__promotion-item img {
    max-width: 124px;
    width: 100%;
    /* max-height: 142px; */
    max-height: 124px;
    height: 100%;
    /* margin-right: 28px; */
    -o-object-fit: contain;
    object-fit: contain;
}

.card__promotion-item-total {
    max-width: 311px;
    width: 100%;
    height: 100%;
    padding: 24px 27px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-self: center;
    -ms-flex-self: center;
    align-self: center;
}

.card__promotion-item-total .base-button {
    padding: 16px;
}

.card__promotion-item-total .sale {
    margin-bottom: 6px;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 20px;
    color: var(--color-primary);
}

.card__promotion-item-total .new-price {
    font-weight: 700;
    font-size: 2.125rem;
}

.card__promotion-item-title {
    /* margin-bottom: 24px; */
    margin-top: 14px;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.375rem;
    color: #454545;
}

.card__promotion-item-title::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.card__promotion-item-price {
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 25px;
    color: var(--color-primary);
}

.card__promotion-item--first::after,
.card__promotion-item--second::after {
    content: '';
    position: absolute;
    top: calc(50% - 17px);
    right: -17px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    font-size: 1.3125rem;
    color: #ACACAC;
    background-color: #f5f5f5;
    border-radius: 50%;
}

.card__promotion-item--first::after {
    content: '+';
}

.card__promotion-item--second::after {
    content: '=';
}

.card__promotion-nav-btns .swiper-button-prev,
.card__promotion-nav-btns .swiper-button-next,
.card__promotion-nav-btns .swiper-pagination {
    position: static;
    margin: 0;
}

.card__promotion-nav-btns .swiper-button-prev,
.card__promotion-nav-btns .swiper-button-next {
    width: 34px;
    height: 34px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-color: #f5f5f5;
    border-radius: 50%;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.card__promotion-nav-btns .swiper-button-prev svg,
.card__promotion-nav-btns .swiper-button-next svg {
    width: 11px;
    height: 11px;
    fill: #ACACAC;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.card__promotion-nav-btns .swiper-button-prev:disabled,
.card__promotion-nav-btns .swiper-button-prev[disabled],
.card__promotion-nav-btns .swiper-button-next:disabled,
.card__promotion-nav-btns .swiper-button-next[disabled] {
    opacity: 0.4;
    cursor: not-allowed;
}

.card__promotion-nav-btns .swiper-button-prev:disabled:hover,
.card__promotion-nav-btns .swiper-button-prev[disabled]:hover,
.card__promotion-nav-btns .swiper-button-next:disabled:hover,
.card__promotion-nav-btns .swiper-button-next[disabled]:hover {
    background-color: #f5f5f5;
}

.card__promotion-nav-btns .swiper-button-prev svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.card__promotion-nav-btns .swiper-button-prev:after,
.card__promotion-nav-btns .swiper-button-next:after {
    display: none;
}

.card__promotion-nav-btns .swiper-pagination {
    font-weight: 600;
    font-size: 1rem;
    color: #454545;
}

.card__promotion-nav-btns .swiper-pagination-fraction {
    width: 60px;
}

.card__promotion-swiper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.card__promotion-swiper .swiper-slide {
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; */
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: auto;
}

.card .card__promotion-item-total-text {
    margin-bottom: 34px;
}

.card__info {
    margin: 45px 0 35px;
}

.card__also-purchased {
    padding-bottom: 45px;
}

.card__recently {
    padding-bottom: 45px;
}

.card__recently.card__also-purchased {
    padding-bottom: 55px;
}

.card__price-mobile {
    position: fixed;
    bottom: 55px;
    z-index: 50;
    width: 100%;
    display: none;
    margin: 0 -20px 0 -20px;
    background-color: #ffffff;
}

.card__price-mobile-header {
    border-bottom: 1px solid rgba(66, 66, 66, 0.1);
}

.card__price-mobile-header .grey-block {
    padding: 5px 19px;
    background-color: #ffffff;
    margin-bottom: 0;
}

.card__price-mobile-header .payment-info__price .flex {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.card__price-mobile-header .payment-info__price .current p {
    /* font-size: 16px;
  line-height: 21px; */
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    margin-right: 4px;
}

.card__price-mobile-header .payment-info__price .current p span {
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    margin-right: 4px;
}

.card__price-mobile-header .payment-info__price .old {
    font-size: 12px;
    line-height: 1;
    margin-right: 3px;
}

.card__price-mobile-header .payment-info__price .sale {
    font-size: 11px;
    line-height: 1;
}

.card__price-mobile-header .payment-info__price {
    margin-bottom: 0;
}

.card__price-mobile-header .payment-info__add {
    margin-bottom: 0;
}

.card__price-mobile-header .payment-info__add .add-to-card {
    font-size: 12px;
    line-height: 16px;
    /* margin-right: 10px; */
    padding: 11px 22px 13px;
    height: 38px;
}

.card__price-mobile-header .payment-info__add .add-to-card svg {
    width: 18px;
    height: 15px;
    margin-right: 4px;
}

.card__price-mobile-header .payment-info__add .buy-one-click {
    width: 38px;
    height: 38px;
}

.card__price-mobile-header .payment-info__add .buy-one-click svg {
    width: 21px;
    height: 21px;
}

.card__action-time {
    position: relative;
    z-index: 50;
    display: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    /* margin-top: -99px; */
    margin-right: -20px;
    margin-left: -20px;
    padding: 10px 20px;
}

.card__action-time .text {
    width: auto !important;
}

.action-time__icon {
    width: 18px;
    height: 18px;
    fill: var(--color-primary);
}

.delivery__tabs {
    position: relative;
}

.delivery__tabs .tabs__label {
    position: relative;
    display: inline-block;
    max-width: 253px;
    width: 100%;
    margin: 0 0 0 -0.29em;
    padding: 16px 24px;
    white-space: nowrap;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    background-color: #f5f5f5;
    border-radius: 2px;
}

.delivery__tabs .tabs__label:hover {
    color: #ffffff;
    background-color: var(--color-primary);
    cursor: pointer;
}

.delivery__tabs .tabs__label::after {
    visibility: hidden;
    content: '';
    position: absolute;
    top: calc(100% - 2px);
    left: calc(50% - 7px);
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-left-width: 7px;
    border-right-width: 7px;
    border-top: 7px solid var(--color-primary);
}

.delivery__tabs input:checked + .tabs__label {
    color: #ffffff;
    background-color: var(--color-primary);
}

.delivery__tabs input:checked + .tabs__label::after {
    visibility: visible;
}

.delivery__tabs section {
    border-top: none;
}

.delivery .select-city {
    position: absolute;
    top: 16px;
    right: 0;
    font-size: 0.875rem;
}

.delivery .select-city__selected {
    margin-right: 33px;
    font-weight: 400;
    font-size: 0.875rem;
}

.delivery .select-city__selected span {
    font-weight: 600;
}

.delivery .select-city__btn {
    padding: 0;
    color: var(--color-primary);
    background-color: transparent;
    border: none;
    border-bottom: 1px solid transparent;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.delivery .select-city__btn:hover {
    border-bottom: 1px solid #ebe9e9;
}

.delivery .availability__table-header {
    font-weight: 700;
    font-size: 0.875rem;
    color: #454545;
    padding: 14px 24px;
    background-color: #f5f5f5;
}

.delivery .availability__table-body {
    padding: 20px 24px;
    font-size: 0.875rem;
    border-bottom: 1px solid #eaeaea;
}

.delivery .availability__table-body .table-body__address {
    font-weight: 600;
}

.delivery .availability__table-body .table-body__working {
    position: relative;
    cursor: pointer;
    padding-left: 16px;
}

.delivery .availability__table-body .table-body__working svg {
    position: absolute;
    top: 6px;
    left: 0;
    vertical-align: middle;
    margin-right: 8px;
    width: 8px;
    height: 8px;
    fill: #ACACAC;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.delivery .availability__table-body .table-body__working .popup {
    left: 0px;
}

.delivery .availability__table-body .table-body__working.active svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    fill: var(--color-primary);
}

.delivery .availability__table-body .table-body__working .popup {
    display: none;
    position: absolute;
    z-index: 5;
    top: 32px;
    padding: 20px;
    font-size: 0.875rem;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

.delivery .availability__table-body .table-body__working .popup__title {
    margin-bottom: 6px;
    font-style: normal;
    font-weight: 700;
    color: #454545;
}

.delivery .availability__table-body .table-body__working .popup p {
    line-height: 24px;
    color: #808080;
}

.delivery .availability__table-body .table-body__working.active .popup {
    display: block;
}

.delivery .availability__table-body .table-body__date span {
    font-weight: 700;
    display: none;
}

.delivery .availability__table-body .table-body__availability {
    position: relative;
    padding-left: 16px;
    white-space: nowrap;
}

.delivery .availability__table-body .table-body__availability::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 0px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.delivery .availability__table-body .table-body__availability--true::before {
    background-color: #00b407;
}

.delivery .availability__table-body .table-body__availability--false::before {
    background-color: #f44336;
}

.delivery .availability__table-body .table-body__date {
    white-space: nowrap;
}

.delivery .availability__table-body .table-body__reserve {
    color: var(--color-primary);
}

.delivery .availability__table-body .table-body__reserve svg {
    width: 19px;
    height: 23px;
    cursor: pointer;
    fill: var(--color-primary);
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.delivery .availability__table-body .table-body__reserve a {
    border-bottom: 1px solid transparent;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.delivery .availability__table-body .table-body__reserve a:hover {
    border-bottom: 1px solid #ebe9e9;
}

.delivery .availability__table-body .table-body__reserve--mobile {
    display: none;
    font-size: 0.875rem;
    color: var(--color-primary);
}

.delivery .availability__table-body .table-body__reserve--mobile a {
    border-bottom: 1px solid transparent;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.delivery .availability__table-body .table-body__reserve--mobile a:hover {
    border-bottom: 1px solid #ebe9e9;
}

.delivery .availability .table-header {
    white-space: nowrap;
}

.delivery .delivery-content__info {
    margin-bottom: 35px;
}

.delivery .delivery-content__item {
    max-width: 506px;
    width: 100%;
    padding-right: 34px;
    font-size: 0.875rem;
}

.delivery .delivery-content__item:not(last-child) {
    margin-right: 18px;
}

.delivery .delivery-content__item .title {
    position: relative;
    font-weight: 700;
    color: #454545;
}

.delivery .delivery-content__item .title::before {
    content: '';
    position: absolute;
    top: -2px;
}

.delivery .delivery-content__item .title--price {
    margin-left: 32px;
}

.delivery .delivery-content__item .title--price::before {
    content: url(../img/icons/calc.svg);
    left: -32px;
}

.delivery .delivery-content__item .title--delivery {
    margin-left: 40px;
}

.delivery .delivery-content__item .title--delivery::before {
    content: url(../img/icons/delivery.svg);
    left: -40px;
}

.delivery .delivery-content__item .text {
    color: #000000;
}

.delivery .delivery-content__description .title {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 20px;
}

.delivery .delivery-content__description p {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 19px;
    color: #000000;
    margin-bottom: 18px;
}

.delivery .tabs__section {
    display: none;
    border-top: none;
}

.specifications__header {
    padding: 14px 24px;
    font-weight: 700;
    font-size: 0.875rem;
    color: #454545;
    background-color: #f5f5f5;
    border-bottom: 1px solid #d9d9d9;
}

.specifications__row {
    position: relative;
    padding: 14px 24px;
    font-size: 0.875rem;
    border-bottom: 1px solid #eaeaea;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.specifications__row:last-child {
    margin-bottom: 20px;
    border-bottom: none;
}

.specifications__row:hover {
    background-color: #f5f5f5;
}

.specifications__row:hover svg {
    visibility: visible;
}

.specifications__key {
    width: 44.57%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-weight: 400;
    color: #808080;
}

.specifications__key svg {
    position: relative;
    top: 1px;
    visibility: hidden;
    margin-left: 6px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    fill: #D9D9D9;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    flex-shrink: 0;
}

.specifications__info {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 1;
    max-width: 360px;
    padding: 24px 28px;
    display: none;
    background-color: #fff;
    -webkit-filter: drop-shadow(0px 4px 50px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(0px 4px 50px rgba(0, 0, 0, 0.1));
    border-radius: 2px;
    /*&::before {
      content: '';
      position: absolute;
      top: -9px;

      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 7.5px 9px 7.5px;
      border-color: transparent transparent #ffffff transparent;
    }*/
}

.specifications__value {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    font-weight: 600;
    color: #454545;
}

.description img {
    display: block;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: cover;
}

.description__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 75px;
}

.description__row .col {
    width: 50%;
    padding: 40px 46px;
}

.description__row .col--darken {
    background-color: #454545;
}

.description__row .col--grey {
    background-color: #f5f5f5;
}

.description__row .col--withoutPadding {
    padding: 0;
}

.description__title {
    margin-bottom: 15px;
    font-size: 2rem;
    line-height: 40px;
}

.description__title--white {
    color: #ffffff;
}

.description__text {
    margin-bottom: 45px;
    line-height: 24px;
}

.description__text--white {
    color: #ffffff;
}

.description__text--width {
    width: 100%;
    max-width: 550px;
}

.description__row .col--withoutPadding .description__title, .description__row .col--withoutPadding .description__text {
    padding-right: 15px;
}

.description__hero {
    margin-bottom: 75px;
}

.description__hero img {
    width: 100%;
    max-height: 474px;
}

.description__subtitle {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 24px;
}

.description__list {
    margin-bottom: 62px;
    line-height: 24px;
}

.description__list li {
    position: relative;
    margin-bottom: 13px;
    padding-left: 22px;
}

.description__list li:before {
    content: url("../img/icons/checked.svg");
    position: absolute;
    top: 0px;
    left: 0px;
}

.description__footnote {
    margin-bottom: 75px;
    padding: 35px 45px;
    font-weight: 600;
    line-height: 24px;
    color: #424242;
    background-color: #f5f5f5;
    border-left: 3px solid var(--color-primary);
}

.description__advantages {
    margin-bottom: 100px;
    line-height: 24px;
}

.description__advantages li {
    position: relative;
    padding-top: 30px;
    border-top: 1px solid #d9d9d9;
}

.description__advantages li .count {
    position: absolute;
    top: -18px;
    left: 0;
    padding-right: 12px;
    background-color: #ffffff;
}

.description__advantages li .count .text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    font-weight: 800;
    font-size: 0.75rem;
    background-color: var(--color-primary);
    color: #ffffff;
    border-radius: 50%;
}

.description__features {
    margin-bottom: 35px;
}

.description__features-item {
    margin-bottom: 40px;
    padding: 0 20px;
    border-left: 2px solid var(--color-primary);
}

.description__features-title {
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 1.375rem;
    line-height: 28px;
}

.description__features-text {
    line-height: 24px;
}

.description__features__col {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(50% - 30px);
}

.description__specifications {
    margin-bottom: 75px;
}

.description__specifications .table {
    width: 100%;
}

.description__specifications .table thead {
    border-bottom: 2px solid var(--color-primary);
}

.description__specifications .table thead tr th {
    padding: 15px 26px;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 20px;
    color: #454545;
    background-color: #f5f5f5;
}

.description__specifications .table tbody {
    font-size: 0.875rem;
    line-height: 19px;
    color: #454545;
}

.description__specifications .table tbody tr th,
.description__specifications .table tbody tr td {
    padding: 15px 26px;
    border-bottom: 1px solid #d9d9d9;
}

.description__specifications .table tbody tr th {
    font-weight: 600;
}

.description__specifications .table tbody tr td {
    font-weight: 400;
}

.description__video {
    max-width: 860px;
    width: 100%;
}

.description__video-title {
    margin-top: 15px;
    color: #454545;
}

.description .divider {
    margin-top: -45px;
    margin-bottom: 75px;
}

.video__main {
    width: 66.15%;
}

.video__main .video {
    padding-bottom: 0;
    height: 482px;
}

.video__thumbs {
    width: 31.69%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.video__thumbs .swiper-button-wrapper {
    margin-top: auto;
}

.video__thumbs .swiper-container {
    height: unset;
}

.video__slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.video__slider .swiper-button-wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 100%;
    background-color: #ffffff;
}

.video__slider .swiper-button-wrapper .divider {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-right: 20px;
}

.video__slider .swiper-button-prev-video,
.video__slider .swiper-button-next-video {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: #f5f5f5;
    border-radius: 50%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    cursor: pointer;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.video__slider .swiper-button-prev-video svg,
.video__slider .swiper-button-next-video svg {
    width: 11px;
    height: 11px;
    fill: #ACACAC;
}

.video__slider .swiper-pagination--video {
    display: none;
    bottom: 0;
    margin: 0 10px;
    font-weight: 600;
    font-size: 16px;
    color: #454545;
}

.video__slider .swiper-button-prev-video {
    margin-right: 13px;
}

.video__slider .swiper-button-prev-video svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.video__slider .swiper-button-disabled {
    opacity: 0.6;
}

.video__slider .swiper-button-disabled:hover {
    background-color: #f5f5f5;
}

.video__slider .swiper-button-disabled:hover svg line {
    stroke: #ACACAC;
}

.video__slider--thumbs-video {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.video__slider--thumbs-video .swiper-slide {
    cursor: pointer;
    height: auto;
}

.video__slider--thumbs-video .swiper-slide__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.video__slider--thumbs-video .swiper-slide__item img {
    width: 46.6%;
    max-height: 108px;
    height: 100%;
    margin-right: 20px;
}

.video__slider--thumbs-video .swiper-slide__item span {
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 22px;
    color: #454545;
}

.video__slider--thumbs-video .swiper-slide-thumb-active .swiper-slide__item span {
    color: var(--color-primary);
}

.video__slider-description {
    position: relative;
    margin-top: 8px;
    overflow: hidden;
}

.video__slider-description .divider {
    position: absolute;
    width: 296px;
    height: 1px;
    bottom: 20px;
    right: 120px;
}

.video__slider-title {
    font-weight: 600;
    font-size: 1.375rem;
    line-height: 40px;
    color: #454545;
}

.video__title {
    margin-top: 20px;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.2;
    color: #454545;
}

.video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.video.video--enabled {
    cursor: pointer;
}

.video.video--enabled .video__button {
    display: block;
}

.video__link,
.video__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video__media {
    border: none;
}

.video__button {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    display: none;
    padding: 0;
    margin: 0;
    width: 78px;
    height: 78px;
    background: transparent;
    border: none;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.video__button-shape {
    fill: #212121;
    fill-opacity: 0.8;
}

.video__button-icon {
    fill: white;
}

img.video__media {
    -o-object-fit: cover;
    object-fit: cover;
}

.reviews__no-data {
    margin-bottom: 55px;
}

.reviews__no-data-title {
    margin-bottom: 20px;
    font-size: 24px;
    color: #454545;
}

.reviews__no-data-text {
    max-width: 600px;
    width: 100%;
    font-size: 0.875rem;
    line-height: 22px;
    color: #808080;
}

.reviews__item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    font-size: 0.875rem;
    line-height: 20px;
    color: #454545;
    border-bottom: 1px solid #eaeaea;
}

.reviews .reviews__item:last-child {
    margin-bottom: 25px;
}

.reviews__author {
    margin-bottom: 6px;
    font-weight: 700;
}

.reviews__rating {
    margin-bottom: 25px;
}

.reviews__stars {
    height: 14px;
}

.reviews__stars .stars svg {
    width: 14px;
    height: 14px;
}

.reviews .divider {
    margin: 0 15px;
    color: #d9d9d9;
    border-bottom: 0;
}

.reviews__text {
    margin-bottom: 15px;
}

.reviews__info p {
    max-width: 530px;
    width: 100%;
}

.reviews__advantages {
    max-width: 50%;
    width: 100%;
}

.reviews__shortcomings {
    max-width: 50%;
    width: 100%;
}

.reviews__pagination {
    margin-bottom: 53px;
}

.reviews__form.grey-block {
    padding: 37px 42px;
}

.reviews__form-row {
    margin-bottom: 18px;
}

.reviews__form-input-wrapper {
    width: 100%;
}

.reviews__form-input-wrapper:first-child {
    margin-right: 10px;
}

.reviews__form-input-wrapper:last-child {
    margin-left: 10px;
}

.reviews__form-title {
    margin-bottom: 25px;
    font-size: 1.75rem;
    color: #454545;
}

.reviews__form-assessment {
    margin-bottom: 18px;
}

.reviews__form-assessment .stars {
    position: relative;
    top: -1px;
    margin-left: 16px;
}

.reviews__form-assessment .star {
    width: 17px;
    height: 17px;
    margin-right: 5px;
    cursor: pointer;
}

.reviews__form-footer {
    margin-top: 38px;
}

.reviews__form-footer .text {
    max-width: 838px;
    width: 100%;
    font-size: 0.875rem;
    line-height: 22px;
    color: #ACACAC;
}

.reviews__modal .title {
    text-align: center;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 50px;
    color: #454545;
}

.reviews__modal .text {
    margin-bottom: 10px;
    line-height: 22px;
    text-align: center;
    color: #424242;
}

.instructions__description {
    margin-bottom: 40px;
    line-height: 24px;
    color: #424242;
}

.instructions__row {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}

.instructions__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /* margin-bottom: 30px; */
    padding: 48px 49px 45px 46px;
    border: 1px solid #e6e6e6;
    border-radius: 2px;
    width: calc(33.33% - 14px);
}

.instructions__item img {
    width: 88px;
    height: 113px;
    margin-bottom: 20px;
}

.instructions__item-title {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.375rem;
    line-height: 30px;
    color: #424242;
}

.instructions__item a {
    position: relative;
    padding-left: 34px;
    font-weight: 600;
    line-height: 24px;
    color: var(--color-primary);
}

.instructions__item a:before {
    content: url("../img/icons/download.svg");
    position: absolute;
    top: 0px;
    left: 0px;
}

.recently {
    position: relative;
}

.recently .card-item {
    border: 1px solid #ebebeb;
    height: 100%;
}

.recently-swiper {
    position: relative;
    overflow: hidden;
}

.swiper-button-prev-recently,
.swiper-button-next-recently {
    position: absolute;
    z-index: 3;
    top: calc(50% - 21px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: #f5f5f5;
    border-radius: 50%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    cursor: pointer;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.swiper-button-prev-recently.swiper-button-disabled,
.swiper-button-next-recently.swiper-button-disabled {
    opacity: 0;
}

.swiper-button-prev-recently svg,
.swiper-button-next-recently svg {
    width: 11px;
    height: 11px;
    fill: #ACACAC;
}

.swiper-button-prev-recently {
    left: -12px;
}

.swiper-button-prev-recently svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.swiper-button-next-recently {
    right: -12px;
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 25px 0;
}

.card__info .pagination {
    padding: 0;
}

.pagination__pages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.pagination__prev,
.pagination__next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: #f5f5f5;
    border: none;
    border-radius: 50%;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.pagination__prev svg,
.pagination__next svg {
    width: 11px;
    height: 11px;
    fill: #ACACAC;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    pointer-events: none;
}

.pagination__prev:disabled,
.pagination__prev[disabled],
.pagination__next:disabled,
.pagination__next[disabled] {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination__prev:disabled:hover,
.pagination__prev[disabled]:hover,
.pagination__next:disabled:hover,
.pagination__next[disabled]:hover {
    background-color: #f5f5f5;
}

.pagination__prev:disabled:hover svg,
.pagination__prev[disabled]:hover svg,
.pagination__next:disabled:hover svg,
.pagination__next[disabled]:hover svg {
    fill: #ACACAC;
}

.pagination__prev svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.pagination__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    font-weight: 700;
    font-size: 0.875rem;
    color: #454545;
    border-radius: 50%;
    border: none;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.pagination__link:hover {
    color: #ffffff;
    background-color: var(--color-primary);
}

.pagination__link.active {
    color: #ffffff;
    background-color: var(--color-primary);
}

.pagination__link--divider:hover {
    color: #454545;
    background-color: #ffffff;
}

.pagination__more {
    display: flex;
    align-items: center;
    margin-bottom: 13px;

    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: var(--color-primary);
}

.pagination__more::after {
    content: '';
    display: block;
    width: 9px;
    height: 9px;
    flex-shrink: 0;
    margin-left: 6px;

    background: url(../img/icons/arrow-down-orange.svg) no-repeat;
    background-size: contain;
}

.pagination__prev {
    margin-right: 19px;
}

.pagination__next {
    margin-left: 19px;
}

@media (max-width: 768px) {
    .pagination__link,
    .pagination__prev,
    .pagination__next {
        width: 34px;
        height: 34px;
    }

    .pagination__prev {
        margin-right: 15px;
    }

    .pagination__next {
        margin-left: 15px;
    }
}


.detail_section_text {
    margin-top: 30px;
}

.favorites {
    padding: 0 8px;
}

.row-flex.favorites {
    row-gap: 24px;
    /* row-gap: 4px; */
}

.favorites__title-recently {
    margin-top: 86px;
}

.favorites-content .tabs__section {
    padding: 0px 0px 65px;
}

.favorites {
    padding-bottom: 10px;
}

.favorites-content .container-recently, .compare-content .container-recently {
    background: #ffffff;
}

.favorites-content .card__recently, .compare-content .card__recently {
    margin-top: 14px;
    margin-bottom: 0;
    margin-left: -8px;
    margin-right: -8px;
}

.container-recently h2.h1--thin {
    margin-bottom: 14px;
}

.favorites-content .container .card__recently, .compare-content .container .card__recently {
    padding-bottom: 73px;
}

.favorites-content h2.favorites__title-recently, .compare-content h2.favorites__title-recently {
    margin-top: 0;
    padding-top: 86px;
    font-size: 28px;
    line-height: 32px;
}

.favorites .row-flex {
    margin-left: -10px;
    margin-right: -10px;
}

.favorites .col-3 {
    /* margin-left: 10px;
  margin-right: 10px;
  width: calc(25% - 20px); */
    margin-left: 2px;
    margin-right: 2px;
    width: calc(25% - 4px);
}

.favorites__sort {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 17px;
}

.favorites__content {
    padding: 38px 0 0px 0;
    background-color: #f5f5f5;
}

.gray-bg .pagination__prev,
.gray-bg .pagination__next {
    background-color: #ffffff;
}

.gray-bg .pagination__prev[disabled],
.gray-bg .pagination__next[disabled] {
    opacity: 1;
}

.gray-bg .pagination__prev[disabled] svg,
.gray-bg .pagination__next[disabled] svg {
    fill: #D9D9D9;
}

.compare {
    position: relative;
}

.compare__content {
    padding: 38px 0 0px 0;
}

.compare__wrapper {
    width: 100%;
    overflow-x: auto;
    scrollbar-color: transparent transparent;
}

.compare__wrapper::-webkit-scrollbar,
.compare__wrapper::-webkit-scrollbar-thumb {
    opacity: 0;
}

.compare__table {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #454545;
}

.compare__table td:first-child {
    padding-left: 0;
    padding-right: 20px;
    position: sticky;
    left: 0;
    z-index: 10;
    cursor: default;
}

.compare__table td:first-child::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 0;
    bottom: 0;
    width: 1px;
}

.compare__table thead td {
    vertical-align: top;
    padding-bottom: 22px;
}

.compare__table thead td:first-child {
    padding-left: 0;
}

.compare__table td {
    cursor: e-resize;
    padding-left: 20px;
    min-width: 23.57vw;
    background-color: #F5F5F5;
}

.compare__table td::before {
    background-color: #F5F5F5;
}

.compare__table .card-item {
    margin-bottom: 0;
    /* max-width: 310px; */
    /*height: 510px;*/
    height: 100%;
}

.compare__table .card-item__img {
    padding: 0 0 20px 0;
}

.payment-info__price .current span {
    font-size: 0.7em;
}

.specification__header td {
    font-weight: 700;
    background-color: white;
}

.specification__header td::before {
    background-color: white;
}

.specification td {
    padding-top: 14px;
    padding-bottom: 14px;
}

.specification td:first-child {
    padding-left: 26px;
    color: #808080;
}

.specification .specification__header td:first-child {
    color: #454545;
}

.specification tr {
    border-top: 1px solid #DEDEDE;
}

.specification tr.specification__header,
.specification .specification__header + tr {
    border-top: none;
}

.filter__title {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    color: #454545;
}

.filter__title svg {
    margin-right: 13px;
}

.filter__form {
    padding-bottom: 16px;
    border-bottom: 1px dashed #d9d9d9;
}

.filter__custom-radio {
    margin-bottom: 16px;
}

.filter__clear {
    margin-top: 27px;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: left;
    color: var(--color-primary);
    border: none;
    background-color: transparent;
}

.filter__clear svg {
    margin-right: 14px;
}

.custom-radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 0.9375rem;
    font-weight: 400;
    color: #424242;
    cursor: pointer;
}

.custom-radio--hidden {
    width: 0;
    height: 0;
    visibility: hidden;
    margin: 0;
}

.custom-radio--hidden:checked ~ .custom-radio__pseudo {
    background-color: var(--color-primary);
}

.custom-radio__pseudo {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 19px;
    height: 19px;
    margin-right: 14px;
    background-color: #ffffff;
    border-radius: 50%;
}

.custom-radio__pseudo:after {
    content: '';
    position: absolute;
    top: calc(50% - 2.5px);
    left: calc(50% - 2.5px);
    width: 5px;
    height: 5px;
    background-color: #ffffff;
    border-radius: 50%;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.footer {
    font-size: 0.875rem;
    color: #ffffff;
}

.footer__top {
    background-color: var(--color-grey);
    padding: 64px 0;
}

.footer__bottom {
    padding: 20px 0;
    background-color: #2b2b2b;
}

.footer__col-title {
    pointer-events: none;
    margin-bottom: 21px;
    font-weight: 600;
}

.footer__col-title svg {
    display: none;
    margin-left: 4px;
}

.footer__col-title.open ~ .footer__col-item {
    display: block !important;
}

.footer__col-title.open svg {
    position: relative;
    top: 2px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.footer__col-title.open svg line {
    stroke: #ffffff;
}

.footer__col-item {
    margin-bottom: 14px;
    font-size: 0.875rem;
}

.footer__col-item a {
    color: #CCC;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.footer__col-item a:hover {
    color: var(--color-secondary);
}

.footer__col-item--social {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 33px;
    height: 33px;
    background-color: #464646;
    border-radius: 50%;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.footer__col-item--social:not(:last-child) {
    margin-right: 14px;
}

.footer__col-item--social:hover {
    background-color: #E30613;
}

.footer__col-item--social a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: inherit;
    height: inherit;
    border-radius: inherit;
}

.footer__col-item--mail,
.footer__col-item--time,
.footer__col-item--phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #ffffff;
}

.footer__col-item--mail svg,
.footer__col-item--time svg,
.footer__col-item--phone svg {
    margin-right: 10px;
}

.footer__col-item--mail a,
.footer__col-item--time a,
.footer__col-item--phone a {
    color: #ffffff;
}

.footer__col-item--phone {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.footer__copyright {
    font-size: 0.6875rem;
    color: #6b6b6b;
    line-height: 16px;
}

.footer__payment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer__payment-item {
    width: 37px;
    height: 24px;
    opacity: 0.3;
    border-radius: 2px;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.footer__payment-item:first-child, .footer__payment-item:first-child img {
    width: 100px;
}

.footer__payment-item img {
    width: 37px;
    height: 24px;
}

.footer__payment-item:not(:last-child) {
    margin-right: 6px;
}

.footer__payment-item:hover {
    opacity: 1;
}

.footer__menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    display: none;
    padding: 10px 14px 11px;
    background-color: #ffffff;
}

.footer__menu .card__price-icons-item {
    position: relative;
}

.footer__menu .card__price-icons-item .text {
    font-size: 0.6875rem;
    line-height: 15px;
    color: #aaaaaa;
}

.footer__menu .card__price-icons-item svg {
    fill: var(--color-primary);
    width: 20px;
    height: 20px;
}

.footer__menu .card__price-icons-item .badge {
    position: absolute;
    top: -6px;
    right: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    padding: 0;
    font-weight: 700;
    font-size: 0.625rem;
    color: #ffffff;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.modal {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.modal.modal--open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.modal__body {
    position: relative;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

.modal__content {
    padding: 21px 33px;
}

.modal__title {
    margin-bottom: 18px;
    font-size: 28px;
    line-height: 1.25;
    color: #454545;
}

.modal__text {
    font-size: 16px;
    line-height: 24px;
}

.modal__text p:not(:last-child) {
    margin-bottom: 15px;
}

.modal__close {
    position: absolute;
    right: -38px;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 10px;
    color: white;
    border: none;
    background-color: var(--color-primary);
    -webkit-box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.modal__close:hover {
    background-color: var(--color-contrast);
}

.modal__close svg {
    pointer-events: none;
    fill: currentColor;
}

.modal__body {
    width: calc(100% - 38px);
}

.select-city__modal .modal__body {
    max-width: 359px;
}

.select-city__modal .modal__form-button {
    pointer-events: auto;
}

.modal__form-label {
    position: relative;
}

.modal__form-button {
    position: absolute;
    right: 14px;
    top: 3px;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    background-color: transparent;
}

.modal__form-wrapper {
    margin-top: 7px;
    height: 330px;
    overflow-y: auto;
}

.modal__form-wrapper::-webkit-scrollbar {
    width: 3px;
    background-color: transparent;
    border-radius: 2px;
}

.modal__form-wrapper::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background-color: #fff;
    background-color: var(--color-primary);
}

.modal__form-wrapper .form-wrapper__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 17px;
}

.modal__map {
    /*padding: 14px;*/
}

.modal__map .modal__body {
    height: 501px;
}

.modal__map .modal__content {
    height: 100%;
}

.modal__form .base-input {
    background-color: #F5F5F5;
}

.modal__link {
    display: block;
    margin-top: -4px;
}

.modal__link .link {
    font-size: 12px;
    line-height: 16px;
}

.modal__form .form__submit {
    margin-top: 20px;
}

.modal-auth .modal__body {
    max-width: 452px;
}

.modal__map .modal__body {
    max-width: 773px;
}

.modal-success .modal__body {
    max-width: 625px;
}

.modal-recalc .modal__body {
    max-width: 493px;
}

@media (max-width: 1024px) {
    .modal__map .modal__body {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .modal {
        z-index: 1000;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .modal__content {
        padding: 20px;
    }

    .modal__body {
        height: 100vh;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .modal__body,
    .modal-auth .modal__body,
    .modal-success .modal__body,
    .select-city__modal .modal__body,
    .modal__map .modal__body,
    .modal-recalc .modal__body {
        max-width: calc(100% - 38px);
    }

    .modal__form-wrapper {
        height: 85vh;
        padding-bottom: 24px;
    }

    .modal__form {
        /* height: 100vh; */
        height: auto;
        padding-bottom: 24px;
    }

    .modal__map .modal__body {
        height: 100vh;
    }
}

.modal__footer {
    margin-top: 25px;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
}

.modal__footer .link {
    margin-left: 5px;
}

.modal__check {
    margin-top: 5px;

    font-size: 14px;
    line-height: 19px;
}

.modal__aftersend {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 300px;
    text-align: center;
    font-size: 20px;
    line-height: 1.14;
}

.yt_picture {
    display: none;
}

.yt_background {
    display: none;
}

.modal__good {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.modal__good .good__img {
    width: 70px;
    height: 70px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 12px;
    -o-object-fit: contain;
    object-fit: contain;
}

.modal__good .good__name {
    margin-bottom: 10px;

    font-size: 20px;
    line-height: 1.2;
}

.modal__good .good__name,
.modal__good .good__name:hover {
    color: #424242;
}

.modal__good .good__price {
    font-weight: bold;
    font-size: 16px;
}

@media (max-width: 359.9px) {
    .modal__good .good__img {
        width: 60px;
        height: 60px;
        margin-right: 8px;
    }

    .modal__good .good__name {
        margin-bottom: 6px;

        font-size: 16px;
    }

    .modal__good .good__price {
        font-size: 14px;
    }

}

/* END MAIN STYLES */

/* ----------=====---------- */

/* MEDIA */

@media (min-width: 768px) {
    .tabs__section {
        padding: 40px 0 65px 0;
    }

    .card__promotion ~ h2.h1--thin {
        font-size: 28px;
        margin-bottom: 13px;
    }

    .card__info .tabs__section {
        padding: 42px 0 22px 0;
    }

    .tabs__button {
        margin-right: 20px;
        padding-bottom: 20px;
        font-size: 16px;
        line-height: 20px;
    }

    .pay-delivery .tabs__button {
        margin-right: 0;
        width: 33%;
        margin-bottom: 10px;
    }

}

@media (min-width: 1400px) {
    .compare__table td {
        min-width: 325px;
    }

    .compare__table td.filter-block {
        min-width: 310px;
    }
}

@media (max-width: 1399.9px) {
    .video__main .video {
        height: calc(100vw * 0.34);
    }

    .video__thumbs .swiper-container {
        height: calc(100vw * 0.34);
    }
}

@media (max-width: 1240px) {
    .card__promotion-item img {
        max-width: 76px;
        max-height: 76px;
    }

    .feedback__form {
        flex-direction: column;
    }
}

@media (max-width: 1200px) {

    .feedback__form {
        flex-direction: column;
    }

    .feedback__form_form {
        margin-top: 30px;
        width: 50%;
    }

    .card__header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .card__header-badges {
        margin-bottom: 16px;
    }

    .pagination {
        margin-top: 32px;
    }
}

@media screen and (max-width: 1200px) {

    .feedback__form {
        flex-direction: column;
    }

    .feedback__form_form {
        width: 50%;
    }

    .favorites .col-3 {
        width: calc(33.33333% - 4px);
    }
}

@media (max-width: 1080px) {
    .card__main {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .card__slider .card__slider--main {
        height: 340px;
    }

    .card__slider .card__slider--main .swiper-slide {
        padding-bottom: 24px;
    }

    .card__slider .card__slider--thumbs {
        display: none;
    }

    .card__slider .card__slider--main img {
        height: 100%;
        width: auto;
    }

    .card__slider .card__slider--main {
        max-width: 100%;
        float: none;
    }

    .card__slider {
        max-width: 100%;
        padding-bottom: 4px;
    }

    .card__price {
        max-width: 100%;
    }

    .card__price-action-time {
        display: none;
    }

    .card__promotion {
        display: none;
    }

    .card__promotion--mobile {
        display: block;
        margin-bottom: 35px;
    }

    .card__promotion-body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .card__action-time {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .card__slider .swiper-wrapper {
        margin-bottom: 11px;
    }

    .card__slider .card__slider--main .swiper-pagination {
        display: block;
        bottom: 12px;
        margin: 6px 0;
    }

    .card__features-item {
        margin-bottom: 25px;
    }

    .color-select__list {
        margin: 20px 4px 19px;
    }

    .card__features-item-body .gift__body {
        padding: 21px 30px 21px 16px;
    }

    .card__features-item.item-haracteristic {
        display: none;
    }

    .favorites .col-3 {
        width: calc(50% - 4px);
    }
}

@media (max-width: 1024px) {

    .feedback__form {
        flex-direction: column;
    }

    .feedback__form_form {
        width: 50%;
    }

    .card__promotion-item-title {
        font-size: 0.8125rem;
        line-height: 1.25rem;
    }

    .video__main {
        width: 100%;
    }

    .video__thumbs .swiper-container-vertical > .swiper-wrapper {
        flex-wrap: wrap;
        justify-content: space-between;
        flex-direction: row;
    }

    .video__thumbs .swiper-wrapper {
        flex-wrap: wrap;
        justify-content: space-between;
        flex-direction: row;
    }

    .yt_background {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: black;
        opacity: 0.5;
    }

    .yt_picture {
        display: block;
        position: absolute;
        left: 50%;
        top: 50%;
        width: 48px;
        height: 28px;
        margin-left: -25px;
        margin-top: -15px;
        z-index: 63;
    }

    /*.video__main .video {*/
    /*  height: 0;*/
    /*  padding-bottom: 56.25%;*/
    /*}*/
    .video__thumbs {
        width: 100%;
    }

    .video__slider {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .video__slider .swiper-button-wrapper {
        margin-top: 20px;
    }

    .video__slider .swiper-pagination--video {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }

    .video__slider .swiper-button-prev-video {
        margin-right: 0;
    }

    .video__thumbs .swiper-wrapper {
        height: unset;
    }

    .video__slider--thumbs-video {
        margin-top: 20px;
        /*display: none;*/
    }

    .video__slider--thumbs-video .swiper-slide {
        width: 48%;
        border: 1px solid gray;
        border-radius: 2px;
        margin-top: 10px;
    }

    .video__slider--thumbs-video .swiper-slide__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: 100%;
        /*margin-bottom: 16px;*/
    }

    .video__slider--thumbs-video .swiper-slide__item img {
        width: auto;
        max-height: unset;
        height: 100%;
        margin-right: 0;
        /*margin-bottom: 10px;*/
    }

    .video__slider--thumbs-video .swiper-slide__item span {
        font-size: 0.75rem;
        line-height: 18px;
    }

    .video__slider-description {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .video__slider-description .divider {
        display: block;
        width: 100%;
        left: -146px;
    }

    .video__slider-title {
        font-size: 1.125rem;
        line-height: 24px;
    }
}

@media (max-width: 1023.9px) {
    .compare__table {
        font-size: 13px;
        line-height: 17px;
    }

    .compare__table td {
        min-width: 165px;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 15px;
    }

    .compare__table td:first-child {
        min-width: 23.57vw;
        padding-left: 12px;
        padding-right: 12px;
    }

    .compare__table .card-item {
        padding: 12px;
        height: 270px;
        /* max-width: 150px; */
    }

    .card-item__img {
        height: 226px;
    }

    .card-item__title {
        font-size: 14px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .compare__table .card-item__header {
        top: 3px;
        right: 3px;
    }

    .compare__table .card-item__img {
        padding: 0 0 15px;
        margin-bottom: 10px;
    }

    .compare__table .card-item__img img {
        max-width: 98px;
        object-fit: contain;
    }

    .compare__table .card-item__remove {
        padding: 4px;
    }

    .compare__table .card-item__remove svg {
        display: block;
        width: 12px;
        height: 12px;
    }

    .compare__table .card-item__part-number {
        margin-bottom: 7px;
        margin-top: 3px;
        font-size: 10px;
        line-height: 14px;
    }

    .compare__table .card-item__reviews a {
        font-size: 10px;
        line-height: 14px;
    }

    .compare__table .card-item__title {
        margin-bottom: 14px;
        font-size: 12px;
        line-height: 18px;
    }

    .compare__table .card-item__footer .payment-info__price .current {
        font-size: 14px;
        line-height: 19px;
    }

    .compare__table .card-item .stars {
        display: none;
    }

    .compare__table .card-item .add-to-card {
        font-size: 0;
        line-height: 0;
        padding: 7px 6px 6px 4px;
    }

    .compare__table .card-item .add-to-card--text,
    .compare__table .card-item .add-to-card[disabled] {
        font-size: 11px;
        line-height: normal;
    }

    .compare__table .card-item .add-to-card svg {
        width: 18px;
        height: 16px;
    }

    .compare__table .card-item .add-to-card,
    .compare__table .card-item .buy-one-click {
        width: 29px;
        height: 29px;
    }

    .compare__table .card-item .add-to-card svg,
    .compare__table .card-item .buy-one-click svg {
        margin-right: 0;
    }

    .compare__table .card-item .buy-one-click {
        margin-left: 4px;
        padding: 2px;
    }

    .compare__table .card-item .buy-one-click svg {
        width: 23px;
        height: 23px;
    }

    .compare__button {
        display: none;
    }

    .filter__custom-radio {
        margin-bottom: 12px;
        font-size: 13px;
        line-height: 1.14;
    }

    .filter__title {
        margin-bottom: 16px;
    }

    .filter__clear {
        margin-top: 20px;
        font-size: 13px;
        line-height: 1.14;
    }

    .specification td {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .specification td:first-child {
        padding-left: 16px;
    }
}

@media (max-width: 1200px) {
    .header__top {
        font-size: 12px;
    }

    .header__top-menu li:not(:last-child) {
        margin-right: 15px;
    }

    .header__top-nav a,
    .header__top-nav span {
        margin-left: 20px;
    }

    .header .card__price-icons-item {
        margin-left: 30px;
    }

    .header__logo {
        margin-right: 30px;
    }
}

@media (max-width: 991px) {
    .video__slider-description .divider {
        display: none;
    }

    .instructions__item {
        width: calc(50% - 10px);
    }

    .delivery .select-city {
        position: static;
        margin-top: 24px;
    }

    .main-content {
        padding-top: 19px;
    }

    .header__top,
    .header__bottom-menu {
        display: none;
    }

    .header__main {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .header .card__price-icons-item {
        display: none;
    }

    .header__logo {
        margin-bottom: 12px;
    }

    .header__content {
        width: 100%;
    }

    .header__search {
        max-width: 100%;
    }

    .header__contacts-mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

}

@media (max-width: 768px) {
    .h1,
    h1 {
        font-size: 1.75rem;
        line-height: 38px;
    }

    .h1--thin {
        font-size: 28px;
        line-height: 35px;
    }

    .card__promotion ~ h2.h1--thin {
        margin-bottom: 10px;
    }

    .h1__sub {
        font-size: 20px;
        line-height: 35px;
    }

    .h3,
    h3 {
        font-size: 1.25rem;
        line-height: 28px;
    }

    .main-content {
        padding-bottom: 33px;
    }

    .feedback__form_form {
        width: 100%;
    }

    .main-content.stocks {
        padding-bottom: 0;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .table-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .bonuses {
        display: none;
    }

    .card-item__img {
        padding-top: 0;
    }

    .breadcrumbs {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: 2px;
    }

    .breadcrumbs__item {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-bottom: 4px;

        line-height: 18px;
    }

    /* .card-detail .breadcrumbs__item:nth-last-child(2) {
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 20px;
    max-width: calc(50% - 13px);
  } */
    /* .card-detail .breadcrumbs__item:last-child {
    max-width: calc(50% - 12px);
  } */
    body > div.main-body > main > div:nth-child(1) > ul > li:nth-child(4)
    .breadcrumbs__item {
        font-size: 0.8125rem;
    }

    .card-detail .breadcrumbs {
        margin-bottom: 6px;
    }

    .card-detail .h1--thin {
        margin-bottom: 11px;
    }

    .card__title {
        margin-bottom: 12px;
        font-weight: 600;
        line-height: 38px;
    }

    .card__header {
        padding-bottom: 0;
    }

    .card__header-actions {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .card__header--reviews {
        margin-right: 23px;
        margin-bottom: 16px;
        padding-left: 0;
    }

    .card__header--reviews {
        margin-right: 16px;
    }

    .card__header--number {
        margin-left: 0;
        margin-right: 23px;
        margin-bottom: 16px;
    }

    .card__header--favorites {
        margin-left: 0;
        margin-right: 23px;
        margin-bottom: 16px;
    }

    .card__header--compare {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin-left: 0;
        margin-right: 23px;
        margin-bottom: 16px;
        padding-top: 2px;
    }

    .card__promotion-nav {
        border-right: none;
        border-bottom: 1px solid #e6e6e6;
    }

    .card__promotion-nav span {
        margin-bottom: 16px;
    }

    .card__promotion-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        border-right: none;
        border-bottom: 1px solid #e6e6e6;
        max-width: 100%;
    }

    .card__promotion-item-total-text {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        margin-bottom: 17px;
    }

    .card__promotion-item-total-text .new-price {
        margin-right: 13px;
    }

    .card__promotion-item--first::after,
    .card__promotion-item--second::after {
        top: calc(100% - 17px);
        right: 0;
        left: 24px;
    }

    .card__promotion-nav-btns .swiper-pagination-fraction,
    .card__promotion-nav-btns .swiper-pagination-custom,
    .card__promotion-nav-btns .swiper-container-horizontal > .swiper-pagination-bullets {
        width: 60px;
    }

    .card__promotion-swiper .swiper-slide {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .card .card__promotion-item-total-text {
        margin-bottom: 12px;
    }

    .card__price-mobile {
        display: block;
    }

    .card__action-time {
        position: fixed;
        width: 100%;
        bottom: 97px;
        padding: 5px 19px;
        border-radius: 0;
    }

    .card__price-mobile-header .grey-block {
        height: 55px;
    }

    .card__action-time .action-time .clock .days span,
    .card__action-time .action-time .clock .hours span,
    .card__action-time .action-time .clock .minutes span {
        font-size: 17px;
        line-height: 23px;
    }

    .card__action-time .divider {
        border-bottom: 0;
    }

    .action-time svg {
        margin-top: 0;
    }

    .delivery .availability__table-header {
        display: none;
    }

    .delivery .availability__table-body {
        padding-left: 0;
        padding-right: 0;
    }

    .delivery .availability__table-body .table-body__address {
        position: relative;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        width: auto;
        margin-bottom: 13px;
        margin-right: 50px;
    }

    .delivery .availability__table-body .table-body__working {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
        width: auto;
    }

    .delivery .availability__table-body .table-body__working .popup {
        position: static;
        margin: 14px -20px -21px -20px;
        padding: 14px 20px 14px 20px;
        background-color: #f5f5f5;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .delivery .availability__table-body .table-body__date {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        width: auto;
        margin-bottom: 13px;
    }

    .delivery .availability__table-body .table-body__date span {
        display: inline;
    }

    .delivery .availability__table-body .table-body__availability {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        width: auto;
        margin-bottom: 13px;
    }

    .delivery .availability__table-body .table-body__reserve {
        position: absolute;
        right: 0;
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        width: auto;
        margin-left: 0;
        margin-right: 0;
    }

    .delivery .availability__table-body .table-body__reserve span {
        display: none;
    }

    .delivery .availability__table-body .table-body__reserve--mobile {
        display: block;
    }

    .delivery .availability__table-body .table-body__reserve svg {
        display: block;
    }

    .delivery .availability__table-body .table-body__reserve svg {
        margin-bottom: 13px;
    }

    .delivery .delivery-content__info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 0;
    }

    .delivery .delivery-content__item {
        max-width: 100%;
        margin-bottom: 20px;
        padding-right: 24px;
    }

    .delivery .delivery-content__item:not(last-child) {
        margin-right: 0;
    }

    .delivery .tabs__section {
        padding-top: 21px;
        padding-bottom: 0;
    }

    .pay-delivery .delivery .tabs__section {
        padding-top: 31px;
        padding-bottom: 42px;
    }

    .specifications__key {
        max-width: 50%;
    }

    .description__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .description__row .col {
        width: 100%;
    }

    .description__text--width {
        width: 100%;
        max-width: 100%;
    }

    .description__row .col--withoutPadding .description__title, .description__row .col--withoutPadding .description__text {
        padding-right: 0;
    }

    .description__row .col--darken {
        padding: 35px 25px 0 25px;
    }

    .description__row .col--grey {
        padding: 35px 25px 0 25px;
    }

    .description__title {
        font-size: 1.75rem;
        line-height: 35px;
    }

    .description__text--width {
        width: 100%;
    }

    .description__footnote {
        padding: 25px;
    }

    .description__specifications {
        overflow-x: auto;
    }

    .description--margin {
        margin-bottom: 30px;
    }

    .footer__top .col-3 {
        margin-bottom: 19px;
    }

    .footer__menu {
        display: block;
    }

    .footer__bottom {
        padding-bottom: 80px;
    }

    .compare__table .card-item {
        height: 265px;
    }
}

@media screen and (max-width: 768px) {
    .col-3, .col-4 {
        width: calc(50% - 30px);
    }

    .col-3_5 {
        width: calc(50% - 30px);
    }

    .col-8_5 {
        width: calc(50% - 30px);
    }

    .instructions .col-4 {
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 768px) and (max-width: 768px) {
    .description__row .col-6 {
        width: calc(100% - 30px);
    }
}

@media (max-width: 600px) {
    .pagination__pages {
        gap: 4px;
    }

    /* .pagination__link:nth-child(5) {
    display: none;
  } */
}

@media screen and (max-width: 576px) {
    .col-3, .col-4 {
        width: calc(100% - 30px);
    }

    .col-3_5 {
        width: calc(100% - 30px);
    }

    .feedback__form .footer__col-item {
        display: flex;
    }

    .col-8_5 {
        width: calc(100% - 30px);
    }

    .description__features__col {
        width: calc(100% - 30px);
    }

    .description__features .col-6 {
        width: calc(100% - 30px);
    }

    .instructions .col-4 {
        width: calc(100% - 30px);
    }

    .favorites .col-3 {
        width: calc(100% - 4px);
    }

    .card-detail .breadcrumbs__item {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 576px) {
    .header__catalog {
        padding: 0;
        height: 34px;
        width: 34px;
    }

    .header__catalog .text {
        display: none;
    }

    .header__catalog .burger {
        margin-right: 0;
    }

    .header__bottom-menu {
        display: none;
    }

    .card__header--reviews a {
        padding-left: 6px;
    }

    .card-item__img {
        height: 240px;
    }

    .card__promotion-item-total {
        padding: 24px;
    }

    .specifications__header {
        padding-left: 16px;
        padding-right: 16px;
    }

    .specifications__row {
        padding-left: 16px;
        padding-right: 16px;
    }

    .specifications__key {
        margin-right: 10px;
    }

    .description__row {
        margin-bottom: 34px;
    }

    .description__hero {
        margin-bottom: 34px;
    }

    .description__footnote {
        margin-bottom: 34px;
    }

    .description__advantages {
        margin-bottom: 50px;
    }

    .description__advantages li {
        margin-top: 14px;
        padding-left: 1px;
        padding-bottom: 14px;
    }

    .description__specifications {
        margin-bottom: 34px;
    }

    .description .divider {
        margin-bottom: 34px;
    }

    .reviews__item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .reviews__info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .reviews__info p {
        max-width: 100%;
    }

    .reviews__advantages {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 16px;
    }

    .reviews__shortcomings {
        max-width: 100%;
    }

    .reviews__form.grey-block {
        padding: 24px;
    }

    .reviews__form-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .reviews__form-input-wrapper:first-child {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .reviews__form-input-wrapper:last-child {
        margin-left: 0;
    }

    .reviews__form-title {
        margin-bottom: 16px;
        font-size: 1.25rem;
    }

    .reviews__form-footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 20px;
    }

    .reviews__form-footer .text {
        margin-bottom: 16px;
        font-size: 0.75rem;
    }

    .instructions__item {
        padding: 35px;
        width: 100%;
    }


    .instructions__item-title {
        font-size: 20px;
        line-height: 28px;
    }

    .sort {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-bottom: 0;
    }

    .pagination {
        margin-top: 0;
        margin-bottom: 0;
    }

    .footer__col-title {
        cursor: pointer;
        pointer-events: all;
    }

    .footer__col-title svg {
        display: inline;
    }

    .footer__col-item--mail,
    .footer__col-item--time,
    .footer__col-item--phone {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .footer__col-item {
        display: none;
    }

    .footer__copyright {
        margin-bottom: 20px;
    }

    .action-time .clock .days div, .action-time .clock .hours div, .action-time .clock .minutes div {
        margin-top: -4px;
    }

    .main-specifications__list .value {
        padding-right: 0;
    }
}

@media screen and (max-width: 576px) and (max-width: 576px) {
    .description__advantages .col-4 {
        width: calc(100% - 30px);
    }
}

@media (max-width: 414px) {
    .card__header--reviews {
        margin-right: 7px;
    }

    .card__slider .card__slider--main img {
        width: 100%;
    }

    .card__price-mobile-header .payment-info__price .current {
        font-size: 1.5rem;
    }

    .card__price-mobile-header .payment-info__price .old,
    .card__price-mobile-header .payment-info__price .sale {
        font-size: 0.875rem;
    }

    .delivery__tabs .tabs__label {
        max-width: 50%;
        margin: 0 0 0 -0.33em;
        padding: 11px 12px 12px;
        font-size: 0.75rem;
    }

    .delivery .availability__table-body .table-body__address {
        max-width: 290px;
    }

    .delivery .delivery-content__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .delivery .delivery-content__item .title--price {
        margin-bottom: 10px;
    }

    .delivery .delivery-content__item .title--delivery {
        margin-bottom: 10px;
    }

    .video__slider-title {
        font-size: 1rem;
        line-height: 21px;
    }

    .modal-auth .modal__footer {
        display: flex;
        flex-direction: column;
        row-gap: 12px;
    }

    .modal-auth .modal__footer .link {
        margin-left: 0;
    }

}

@media (max-width: 359.9px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .card-item {
        padding: 16px;
    }

    .card-item__footer .add-to-card {
        font-size: 0;
        line-height: 0;
        padding: 11px 11px 9px 9px;
        width: 42px;
    }

    .card-item__footer .add-to-card--text,
    .card-item__footer .add-to-card[disabled] {
        font-size: 11px;
        line-height: normal;
    }

    .card-item__footer .add-to-card svg {
        margin-right: 0;
    }

    .card-item__footer .payment-info__price .current {
        font-size: 20px;
    }

    .header__logo {
        max-width: 128px;
    }

    .header__contacts-mobile a {
        margin-left: 16px;
    }

    .filter__custom-radio .custom-radio__pseudo,
    .filter__title svg {
        margin-right: 8px;
        width: 16px;
        height: 16px;
    }

    .filter__custom-radio .custom-radio__pseudo {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 350px) {
    .pagination__prev,
    .pagination__next {
        width: 32px;
        height: 32px;
    }

    .pagination__link {
        width: 32px;
        height: 32px;
    }

    .card__price .payment-info .payment-info__add {
        column-gap: 10px;
    }

    .card__price .payment-info .payment-info__add .add-to-card {
        padding: 16px 30px;
    }
}

@media (hover: hover) {
    .tabs__button:hover {
        color: var(--color-primary);
    }

    .button:hover {
        background-color: var(--color-contrast);
    }

    .link a:hover {
        color: var(--color-contrast);
    }

    .card-item__to-favorites:hover,
    .card-item__to-compare:hover,
    .card-item__remove:hover {
        color: var(--color-contrast);
    }

    .card-item__reviews a:hover {
        color: var(--color-contrast);
    }

    .header .swiper-button-prev-header:hover,
    .header .swiper-button-next-header:hover {
        background-color: var(--color-primary);
    }

    .header .swiper-button-prev-header:hover svg,
    .header .swiper-button-next-header:hover svg {
        fill: #ffffff;
    }

    .card__promotion-nav-btns .swiper-button-prev:hover,
    .card__promotion-nav-btns .swiper-button-next:hover {
        background-color: var(--color-primary);
    }

    .card__promotion-nav-btns .swiper-button-prev:hover svg,
    .card__promotion-nav-btns .swiper-button-next:hover svg {
        fill: white;
    }

    .card__promotion-nav-btns .swiper-button-prev:disabled:hover svg,
    .card__promotion-nav-btns .swiper-button-prev[disabled]:hover svg,
    .card__promotion-nav-btns .swiper-button-next:disabled:hover svg,
    .card__promotion-nav-btns .swiper-button-next[disabled]:hover svg {
        fill: #ACACAC;
    }

    .delivery .availability__table-body .table-body__working:hover svg {
        fill: var(--color-contrast);
    }

    .delivery .availability__table-body .table-body__reserve svg:hover {
        fill: var(--color-contrast);
    }

    .specifications__key svg:hover {
        fill: var(--color-contrast);
    }

    .specifications__key svg:hover ~ .specifications__info {
        display: block;
    }

    .video__slider .swiper-button-prev-video:hover,
    .video__slider .swiper-button-next-video:hover {
        background-color: var(--color-primary);
    }

    .video__slider .swiper-button-prev-video:hover svg,
    .video__slider .swiper-button-next-video:hover svg {
        -webkit-transition: 0.2s ease-in-out;
        -o-transition: 0.2s ease-in-out;
        transition: 0.2s ease-in-out;
        fill: #ffffff;
    }

    .video__link:hover ~ .video__button .video__button-shape {
        fill: #ff0000;
        fill-opacity: 1;
    }

    .swiper-button-prev-recently:hover,
    .swiper-button-next-recently:hover {
        background-color: var(--color-primary);
    }

    .swiper-button-prev-recently:hover svg,
    .swiper-button-next-recently:hover svg {
        -webkit-transition: 0.2s ease-in-out;
        -o-transition: 0.2s ease-in-out;
        transition: 0.2s ease-in-out;
        fill: #ffffff;
    }

    .pagination__prev:hover,
    .pagination__next:hover {
        background-color: var(--color-primary);
    }

    .pagination__prev:hover svg,
    .pagination__next:hover svg {
        fill: white;
    }

    .gray-bg .pagination__prev[disabled]:hover,
    .gray-bg .pagination__next[disabled]:hover {
        background-color: white;
    }

    .gray-bg .pagination__prev[disabled]:hover svg,
    .gray-bg .pagination__next[disabled]:hover svg {
        fill: #D9D9D9;
    }
}

.locked {
    overflow: hidden
}

.bx-no-touch .locked {
    padding-right: 17px;
}

.menuCatalog {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 20;

    display: none;

    background-color: #fff;
}

.menuCatalog.opened {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.menuCatalog__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
}

.menuCatalog__back {
    display: none;
    padding: 0;
    margin: 0;

    font-family: inherit;
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    color: var(--color-primary);
    text-align: left;

    background-color: transparent;
    border: none
}

.menuCatalog__breadcrumbs {
    display: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    color: #808080;
}

.menuCatalog__breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 10px;
    margin-bottom: 10px;
}

.menuCatalog__breadcrumb::after {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    margin-left: 10px;
    -ms-flex-negative: 0;
    flex-shrink: 0;

    background: url(../img/icons/arrow-right.svg) no-repeat;
    background-size: contain;
}

.menuCatalog__breadcrumb:last-child {
    margin-right: 0;

    color: #C5C5C5;
}

.menuCatalog__breadcrumb:last-child::after {
    display: none;
}

.active-back .menuCatalog__back {
    display: block;
}

.active-back .menuCatalog__title {
    display: none;
}

.active-back .menuCatalog__breadcrumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.menuCatalog__back:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 15px;
    margin-right: 7px;
    vertical-align: middle;
    background-image: url(../img/icons/back-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px)
}

.menuCatalog__close {
    padding: 0;
    margin: 0;
    background-color: transparent;
    border: none
}

/*.menuCatalog__list, .menuCatalog__sublist {*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    list-style: none*/
/*}*/


.menuCatalog__list{
    margin: 0;
    padding: 0;
    list-style: none;
    display: none;
}

.menuCatalog__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
}

.menuCatalog__list li:not(:last-child) {
    margin-bottom: 26px;
}

.menuCatalog__list a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    color: #424242;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
    -webkit-transition: color 250ms ease;
    -o-transition: color 250ms ease;
    transition: color 250ms ease;
}

.menuCatalog__list a.active {
    color: var(--color-primary);
}

.menuCatalog__list a img {
    width: 35px;
    height: 35px;
    margin-right: 15px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.menuCatalog__sublist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.menuCatalog__sublist a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    font-size: 14px;
    line-height: 24px;
    color: #424242;
    text-decoration: none;

    border: 1px solid #EDEDED;
    border-radius: 3px;
    -webkit-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    transition: all 250ms ease;
}

.menuCatalog__sublist a img {
    width: 53px;
    height: 53px;
    margin-right: 25px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.menuCatalog__categories,
.menuCatalog__subcategory {
    overflow-y: auto;
}

@media (max-width: 991.9px) {
    .menuCatalog {
        top: 146px;
        bottom: 0;
        padding-top: 5px;
        padding-bottom: 40px;
        /* overflow-y: auto; */
    }

    .menuCatalog__banner {
        display: none;
    }

    .menuCatalog__container {
        position: relative;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0;
    }

    .menuCatalog__header {
        padding: 20px;
    }

    .menuCatalog__categories {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        padding-left: 20px;
        padding-right: 20px;
        height: 100%;
        padding-bottom: 76px;
    }

    .menuCatalog__list a:after {
        content: "";
        display: inline-block;
        width: 50px;
        height: 34px;
        margin-left: auto;
        vertical-align: middle;
        background-image: url("data:image/svg+xml,%3Csvg width='34' height='34' viewBox='0 0 34 34' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='17' cy='17' r='17' fill='%23F5F5F5'/%3E%3Cline x1='16.2424' y1='19.8285' x2='19.0709' y2='17' stroke='%23D0D0D0' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='19.0709' y1='17' x2='16.2425' y2='14.1716' stroke='%23D0D0D0' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-size: 34px 34px;
        background-position: right center;
        -webkit-transform: translateY(-1px);
        -ms-transform: translateY(-1px);
        transform: translateY(-1px)
    }

    .menuCatalog__subcategory {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        padding: 0 20px 76px;
        background-color: #fff;
        /*-webkit-transform: translateX(100%);*/
        /*-ms-transform: translateX(100%);*/
        /*transform: translateX(100%);*/
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition: -webkit-transform .3s ease;
        transition: -webkit-transform .3s ease;
        -o-transition: transform .3s ease;
        transition: transform .3s ease;
        transition: transform .3s ease, -webkit-transform .3s ease
    }

    .menuCatalog__subcategory.active {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    .menuCatalog__sublist li {
        width: 100%;
    }

    .menuCatalog__sublist li:not(:last-child) {
        margin-bottom: 15px;
    }

    .menuCatalog__sublist a {
        padding: 18px;
    }
}

@media (max-width: 768px) {
    .menuCatalog {
        top: 114px;
        bottom: 56px;
        padding-bottom: 30px;
        /* overflow-y: auto; */
    }
}

@media (min-width: 992px) {
    .menuCatalog__header {
        display: none
    }

    .menuCatalog {
        top: 148px;
        bottom: 0;
        padding-top: 45px;
        padding-bottom: 40px;
    }

    .menuCatalog__categories {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        width: 25%;
        margin-right: 2px
    }

    .menuCatalog__subcategories {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        margin-left: 20px;
    }

    .menuCatalog__categories,
    .menuCatalog__subcategory {
        scrollbar-color: var(--color-primary) #f0f0f0;
        scrollbar-width: thin;
    }

    .menuCatalog__categories::-webkit-scrollbar,
    .menuCatalog__subcategory::-webkit-scrollbar {
        width: 3px;
        background-color: #f0f0f0;
        border-radius: 90px;
    }

    .menuCatalog__categories::-webkit-scrollbar-thumb,
    .menuCatalog__subcategory::-webkit-scrollbar-thumb {
        background-color: var(--color-primary);
        border-radius: 90px;
    }

    .menuCatalog__subcategory {
        display: none;
        height: 100%;
    }

    .menuCatalog__subcategory.active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .menuCatalog__sublist a {
        padding: 23px 19px;
    }

    .menuCatalog__banner {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin-left: 20px;
        width: calc(33.33% - 20px);
    }

    .menuCatalog__sublist {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .menuCatalog__sublist li {
        width: calc(33.33% - 20px);
        margin-right: 20px;
        margin-bottom: 20px;
    }

    .menuCatalog__banner + .menuCatalog__sublist li {
        width: calc(50% - 20px);
    }
}

@supports (display: grid) {
    @media (min-width: 992px) {
        .menuCatalog__sublist {
            display: -ms-grid;
            display: grid;
            -ms-flex-line-pack: start;
            align-content: start;
            -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
            grid-template-columns: 1fr 1fr 1fr;
            grid-gap: 20px;
        }

        .menuCatalog__sublist li {
            width: auto;
            margin: 0;
        }

        .menuCatalog__banner + .menuCatalog__sublist {
            -ms-grid-columns: 1fr 20px 1fr;
            grid-template-columns: 1fr 1fr;
        }

        .menuCatalog__banner + .menuCatalog__sublist li {
            width: auto;
        }
    }
}

@media (hover: hover) {
    .menuCatalog__list a:hover {
        color: var(--color-contrast);
    }

    .menuCatalog__sublist a:hover {
        border-color: var(--color-primary);
    }
}

.radioBlock {
    position: relative;
    cursor: pointer;
    display: block;
}

.radioBlock__input {
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    width: 19px;
    height: 19px;
}

.radioBlock__input__input:focus-visible + .radioBlock__label {
    -webkit-box-shadow: 0 0 0 2px rgba(0, 0, 0, .5);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, .5)
}

.radioBlock__input:checked + .radioBlock__label:before {
    background-color: var(--color-primary);
}

.radioBlock__input:checked + .radioBlock__label:after {
    opacity: 1
}

.radioBlock__label {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 33px;
    min-height: 19px;
    font-size: 14px;
    line-height: 19px;
}

.radioBlock__label:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 19px;
    height: 19px;
    background-color: #fff;
    border-radius: 50%;
    content: "";
    -webkit-transition: background-color 250ms ease;
    -o-transition: background-color 250ms ease;
    transition: background-color 250ms ease;
}

.radioBlock__label:after {
    position: absolute;
    top: 7px;
    left: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #ffffff;
    opacity: 0;
    content: "";
    -webkit-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
}

@media (hover: hover) {
    .radioBlock__input:not(:checked):hover + .radioBlock__label:before {
        background-color: #FAAE7B;
    }
}

.f-gray {
    color: #ACACAC;
}

.checkBlock {
    position: relative;
    display: block;
}

.checkBlock__input {
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
}

.checkBlock__input:focus-visible + .checkBlock__label {
    box-shadow: 0 0 0 2px rgba(0, 0, 0, .5)
}

.checkBlock__input:checked + .checkBlock__label:before {
    background-color: var(--color-primary);
}

.checkBlock__input:checked + .checkBlock__label:after {
    opacity: 1
}

.checkBlock__label {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 33px;
    min-height: 19px;
    font-size: 14px;
    line-height: 19px;
    cursor: pointer;
}

.checkBlock__label:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    background-color: #ffffff;
    border-radius: 2px;
    content: "";
    transition: background-color 250ms ease;
}

.checkBlock__label:after {
    position: absolute;
    top: 1px;
    left: 0px;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='4.41397' y1='7.07616' x2='7.5937' y2='10.2457' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='13.2528' y1='4.58885' x2='7.59595' y2='10.2457' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / contain;
    opacity: 0;
    content: "";
    transition: opacity 250ms ease;
}

.checkBlock__input[disabled] ~ .checkBlock__label {
    cursor: not-allowed;
    color: #C0C0C0;
}

.checkBlock__input[disabled] ~ .checkBlock__label::before {
    background-color: #E7E7E7;
}

@media (hover: hover) {
    .checkBlock__input:not(:checked):not([disabled]):hover + .checkBlock__label:before {
        background-color: #f17c8b;
    }
}

.rangeBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 10px;
    padding: 0;
    border: none
}

.rangeBlock__range {
    position: relative;
    width: 100%;
    margin-top: 15px;
}

.rangeBlock__input {
    width: calc(50% - 12px);
    padding: 13px;
    font-size: 16px;
    line-height: 20px;
    border: 1px solid #bfbfbf;
    background-color: #fff;
    border-radius: 5px
}

.rangeBlock__error {
    position: absolute;
    left: 0;
    bottom: 0;
    color: #f30022;
    font-size: 12px;
    line-height: 1;
    opacity: 0
}

.ui-slider {
    position: relative;

    height: 5px;

    background-color: #ffffff;
    cursor: pointer;
}

.ui-slider::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    bottom: 0;
}

.ui-slider-range {
    position: absolute;
    height: 100%;

    background-color: var(--color-primary);
}

.ui-slider-handle {
    position: absolute;
    top: 100%;
    width: 1px;
    height: 10px;
    background-color: var(--color-primary);
    cursor: pointer;
}

.ui-slider-handle:first-of-type {
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%)
}

.ui-slider-handle:last-of-type {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%)
}

.priceInput {
    position: relative;
}

.priceInput__label {
    position: absolute;
    left: 15px;
    top: 10px;
    font-size: 14px;
    line-height: 19px;
    color: #B7BAC1;
}

.priceInput__input {
    width: 100%;
    padding: 10px 13px 13px 37px;

    font-size: 14px;
    line-height: 19px;
    color: #1B3542;

    border: none;
    background-color: white;
    border-radius: 2px;
}

.rangeBlock .priceInput {
    width: calc(50% - 12px);
}

.checkBlock__label span,
.radioBlock__label span {
    margin-left: 3px;
}


.accordion__button {
    width: 34px;
    height: 34px;
    padding: 13px;
    margin-left: 12px;

    color: white;

    background-color: var(--color-primary);
    border: none;
    border-radius: 50%;

    -webkit-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    transition: all 250ms ease;
}

.accordion__button svg {
    display: block;
    width: 8px;
    height: 8px;
    fill: currentColor;
    -webkit-transition: -webkit-transform 250ms ease;
    transition: -webkit-transform 250ms ease;
    -o-transition: transform 250ms ease;
    transition: transform 250ms ease;
    transition: transform 250ms ease, -webkit-transform 250ms ease;
}

.j-accordion-button.opened svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

@media (hover: hover) {
    .accordion__button:hover {
        background-color: var(--color-contrast);
    }
}

.catalog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 28px;

    border-top: 1px solid #e4e4e4;
}

.catalog__filter {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 290px;
    margin-right: 40px;

}

.catalog__main {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.filter__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.filter__title img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-right: 13px;
}

.catalog__filter .filter__title {
    padding: 0;
    margin-bottom: 22px;

    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #454545;

    background-color: transparent;
    border: none;
    cursor: default;
    outline: none;
}

.catalog__filter .radioBlock,
.catalog__filter .checkBlock {
    width: 100%;
    margin-bottom: 16px;
}

.catalog__filter .radioBlock:last-child,
.catalog__filter .checkBlock:last-child {
    margin-bottom: 0;
}

.catalog__filter .j-more-block .radioBlock:last-child,
.catalog__filter .j-more-block .checkBlock:last-child {
    margin-bottom: 16px;
}

.filter__block {
    padding-top: 20px;
    padding-bottom: 15px;

    border-bottom: 1px dashed #D9D9D9;
}

.filter__block:not(.accordion) {
    padding-bottom: 25px;
}

.filter__title + .filter__block {
    padding-top: 0;
}

.filter__block .rangeBlock {
    padding-right: 16px;
}


.filter__more {
    padding: 0;

    font-family: inherit;
    font-size: 14px;
    line-height: 19px;
    color: var(--color-primary);
    text-decoration: none;

    border: none;
    background-color: transparent;
    cursor: pointer;
    transition: color 250ms ease;
}

.filter__more .active,
.filter__more.opened .default {
    display: none;
}

.filter__more.opened .active {
    display: inline;
}

.filter__name {
    margin-bottom: 16px;

    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    color: #1B3542;
}

.accordion .filter__name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

.filter__block .accordion__button {
    display: block;
    cursor: pointer;
}

.accordion__button--white {
    color: #D0D0D0;

    background-color: #fff;
}

.accordion__button--gray {
    color: #D0D0D0;

    background-color: #f5f5f5;
}

@media (hover: hover) {
    .filter__more:hover {
        color: var(--color-contrast);
    }

    .accordion__button--white:hover {
        background-color: white;
        color: var(--color-primary);
    }

    .accordion__button--gray:hover {
        color: var(--color-primary);
        background-color: #f5f5f5;
    }
}

.j-accordion-button.opened .accordion__button--white,
.opened.accordion__button--gray {
    color: var(--color-primary);
}

.filter__block .accordion__icon {
    margin-left: 10px;
}

.filter__block .accordion__body {
    margin-top: 20px;
    margin-bottom: 10px;
}

.filter__footer {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}

.filter__footer .base-button {
    display: block;
    margin-bottom: 17px;
    padding-left: 10px;
    padding-right: 10px;

    font-size: 14px;
    line-height: 18px;
}

.filter__open {
    display: none;
    padding: 0;

    font-weight: 700;
    font-size: 14px;
    line-height: 19px;
    color: #454545;

    border: none;
    background-color: transparent;
}

.filter__open img {
    width: 20px;
    height: 20px;
    margin-right: 6px;
    vertical-align: middle;

    transform: translateY(-1px);
}

.catalog__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 22px;
}

.catalog__header .sort {
    margin: 0;
}

.catalog__header .select__options {
    min-width: 0;
}

.catalog__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: calc(100% + 20px);
    margin-right: -20px;
}

.catalog__grid .card-item {
    width: calc(33.33% - 20px);
    margin: 0 20px 20px 0;
    min-height: 0;
    height: auto;
}

.catalog__grid .payment-info__price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.catalog__grid .payment-info__price .current {
    width: 100%;
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
}

.catalog__grid .payment-info__price .old {
    margin-right: 0;

    font-weight: 700;
    font-size: 12px;
    line-height: 1.33;
    color: #808080;
    text-decoration: line-through;
}

.catalog__grid .payment-info__price .discount {
    margin-left: 3px;
    font-weight: 700;
    font-size: 11px;
    line-height: 1.36;
    color: var(--color-primary);
}

.badges.flex {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    max-width: calc(100% - 20px);
}

.catalog,
.catalog__banners {
    margin-bottom: 95px;
}

.catalog .pagination {
    padding: 10px 0 0;
}

.catalog .pagination__more {
    display: none;
}

.special-stocks .pagination,
.posts__news .pagination {
    padding: 15px 0 0;
    margin-top: 0;
}

.special-stocks .pagination__more,
.posts__news .pagination__more {
    display: none;
}

.catalog__grid.stocks__grid {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 20px);
    margin-right: -20px;
}

.catalog__grid.stocks__grid .card-item {
    width: calc(25% - 20px);
    margin: 0 20px 24px 0;
    min-height: 0;
    height: auto;
}

.special.special-stocks .tabs__button span {
    font-weight: 400;
}

.special.special-stocks .tabs__section {
    padding: 30px 0 0 0;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 1280px) {
    .catalog__filter {
        width: 255px;
        margin-right: 20px;
    }

    .catalog__grid {
        width: calc(100% + 16px);
        margin-right: -16px;
    }

    .catalog__grid .card-item {
        width: calc(50% - 16px);
        margin-right: 16px;
        margin-bottom: 16px;
    }

    .catalog__grid.stocks__grid {
        width: calc(100% + 16px);
        margin-right: -16px;
    }

    .catalog__grid.stocks__grid .card-item {
        width: calc(33.33% - 16px);
        margin-right: 16px;
        margin-bottom: 16px;
    }
}

@media (max-width: 992px) {
    .catalog,
    .catalog__banners {
        margin-bottom: 70px;
    }

    .catalog {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-top: 12px;
    }

    .catalog__filter,
    .catalog__main {
        width: 100%;
    }

    .catalog__quantity-show,
    .catalog__sort .custom-select__title {
        display: none;
    }

    .catalog__filter.filter {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1000;

        flex-direction: column;
        display: none;
        overflow-y: auto;
        /* padding: 0 20px; */
        padding: 73px 20px;
        background-color: #F5F5F5;
    }

    .catalog__filter.filter.opened,
    .filter__open,
    .catalog .pagination__more,
    .special-stocks .pagination__more,
    .posts__news .pagination__more {
        display: flex;
    }

    .catalog__grid.stocks__grid .card-item {
        width: calc(50% - 16px);
    }

    .catalog__filter .filter__title {
        /* position: sticky; */
        position: fixed;
        top: 0;
        z-index: 5;
        right: 0;
        left: 0;
        /* margin: 0 -20px 21px; */
        margin: 0 0 21px;
        padding: 20px;
        /* width: calc(100% + 40px); */
        width: 100%;
        background-color: #fff;
        -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
    }

    .catalog__filter .filter__title::before {
        content: "";
        display: inline-block;
        width: 18px;
        height: 15px;
        margin-right: 15px;
        vertical-align: middle;
        background-image: url(../img/icons/back-icon.svg);
        background-repeat: no-repeat;
        background-size: contain;
        -webkit-transform: translateY(-1px);
        -ms-transform: translateY(-1px);
        transform: translateY(-1px)
    }

    .filter__footer {
        /* position: sticky; */
        position: fixed;
        bottom: 0;
        z-index: 5;
        right: 0;
        left: 0;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;

        /* margin: auto -20px 0; */
        padding: 7px 20px;
        /* width: calc(100% + 40px); */
        margin: auto 0 0;
        background-color: #fff;
        -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
    }

    .filter__footer .base-button {
        margin-bottom: 0;
        padding: 10px 20px;
        -webkit-box-flex: 1;
        -ms-flex: 1 0;
        flex: 1 0;

        font-size: 13px;
        line-height: 18px;
    }

    .filter__footer .base-button--white {
        padding-left: 0;
        padding-right: 0;
        margin-right: 25px;
    }

    .catalog__header {
        margin-bottom: 15px;
    }

    .catalog__grid .card-item__reviews .stars {
        display: none;
    }
}

@media (max-width: 576px) {
    .catalog,
    .catalog__banners {
        margin-bottom: 55px;
    }

    .card-detail .h1--thin.card__title {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 12px;

    }

    .catalog__grid,
    .catalog__grid.stocks__grid {
        width: calc(100% + 10px);
        margin-right: -10px;
    }

    .card__promotion {
        margin-top: 25px;
    }

    .catalog__grid .card-item,
    .catalog__grid.stocks__grid .card-item {
        width: 100%; /*changed for mobile*/
        margin-right: 10px;
        margin-bottom: 10px;
        padding: 10px;
    }

    .catalog__grid .badge {
        padding: 1px 6px 3px;
        font-size: 8px;
        line-height: 11px;
    }

    .card__header-badges .badge:not(:last-child) {
        margin-right: 6px;
    }

    .catalog__grid .badges .show-more {
        width: 15px;
        height: 15px;
        padding: 4px;
    }

    .catalog__grid .badges .show-more svg {
        width: 7px;
        height: 7px;
    }

    .catalog__grid .card-item__badges {
        height: 15px;
    }

    .catalog__grid .card__header-badges {
        margin-bottom: 3px;
    }

    .catalog__grid .card-item__img {
        /*   height: 107px;*/
        padding-bottom: 11px;
        margin-bottom: 8px;
    }

    .catalog__grid .card-item__header {
        top: 10px;
        right: 10px;
    }

    .catalog__grid .card-item .card-item__to-favorites {
        margin-bottom: 9px;
    }

    .catalog__grid .card-item__header svg {
        width: 16px;
        height: 16px;
    }

    .catalog__grid .card-item__review {
        margin-bottom: 3px;
    }

    .catalog__grid .card-item__reviews a {
        font-size: 10px;
        line-height: 14px;
    }

    .catalog__grid .card-item__reviews a svg {
        width: 12px;
        height: 12px;
        margin-right: 4px;
    }

    .catalog__grid .card-item__part-number {
        font-size: 10px;
        line-height: 14px;
    }

    .catalog__grid .card-item__title {
        font-size: 12px;
        line-height: 17px;
    }

    .catalog__grid .payment-info__price .current {
        font-size: 14px;
        line-height: 16px;
    }

    .catalog__grid .payment-info__price .old {
        font-size: 11px;

    }

    .catalog__grid .payment-info__price .discount {
        font-size: 9px;
        margin-left: 2px;
    }

    .catalog__grid .card-item__footer .add-to-card,
    .catalog__grid .card-item__footer .buy-one-click {
        width: 32px;
        height: 32px;
    }

    .catalog__grid .card-item__footer .add-to-card {
        padding: 8px 7px;
        font-size: 0;
        line-height: 0;
    }

    .catalog__grid .card-item__footer .add-to-card--text,
    .catalog__grid .card-item__footer .add-to-card[disabled] {
        font-size: 11px;
        line-height: normal;
    }

    .catalog__grid .card-item__footer .add-to-card svg {
        width: 18px;
        height: 16px;
        margin-right: 0;
    }

    .catalog__grid .payment-info__add .buy-one-click {
        padding: 3px;
        /*margin-left: 8px;*/
    }

    .catalog__grid .payment-info__add .buy-one-click svg {
        width: 25px;
        height: 25px;
    }

}

@media (max-width: 350px) {
    .catalog__grid {
        width: 100%;
        margin-right: 0;
    }

    .catalog__grid .card-item {
        width: 100%;
        margin-right: 0;
    }
}

.catalog__recently h2 {
    padding-top: 76px;
}

@media (max-width: 768px) {
    .catalog__recently h2 {
        padding-top: 41px;
    }

    .priceInput__label {
        /* top: 10px; */
        top: calc(50% - 11px);
    }
}

.catalog__banners {
    position: relative;
}

.catalog__banners .swiper-button {
    position: absolute;
    top: 50%;
    z-index: 2;

    padding: 15.5px;
    width: 42px;
    height: 42px;

    background-color: #fff;
    border-radius: 50%;

    -webkit-transform: translateY(-50%);

    -ms-transform: translateY(-50%);

    transform: translateY(-50%);
}

.catalog__banners .swiper-button svg {
    display: block;
    width: 11px;
    height: 11px;
    fill: #ACACAC;
}

.catalog__banners .swiper-button-disabled svg {
    fill: #D0D0D0;
}

.swiper-button-prev-banner {
    left: -19px;
}

.swiper-button-prev-banner svg {
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.swiper-button-next-banner {
    right: -19px;
}

.catalog__banners .swiper {
    overflow-x: hidden;
}

@media (min-width: 640px) {
    .catalog__banners .swiper-button {
        display: none;
    }
}

.catalog__banner img {
    width: 100%;
}

.category__accordion {
    margin-bottom: 25px;
}

.category__name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.category__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    color: #424242;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    text-decoration: none;
}

.category__link img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    margin-right: 13px;
}

.category__name .accordion__button {
    margin-left: 10px;
}

.category__list {
    margin: 9px 0 0 48px;
    padding: 0;

    list-style: none;

    font-size: 14px;
    line-height: 24px;
}

.category__list li {
    margin-bottom: 5px;
}

.category__list li:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .categories {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
        -webkit-column-gap: 32px;
        -moz-column-gap: 32px;
        column-gap: 32px;
        margin-bottom: 50px;
    }

    .category__accordion {
        margin-bottom: 41px;
        overflow: hidden;
        -webkit-column-break-inside: avoid;
        page-break-inside: avoid;
        -moz-column-break-inside: avoid;
        break-inside: avoid;
        break-inside: avoid-column;
        -webkit-backface-visibility: hidden;
    }

    .category__name .accordion__button {
        display: none;
    }

    .category__link img {
        margin-right: 10px;
    }

    .category__list {
        margin: 12px 0 0 45px;
    }
}

@media (min-width: 1240px) {
    .categories {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        margin-bottom: 100px;
    }
}

@media (max-width: 768px) {
    .hidden-mobile {
        display: none;
    }
}

@media (max-width: 359.9px) {
    .filter__footer {
        padding-left: 16px;
        padding-right: 16px;
    }

    .filter__footer .base-button {
        padding-left: 12px;
        padding-right: 12px;
        font-size: 12.5px;
    }

    .filter__footer .base-button--white {
        margin-right: 12px;
    }

    .swiper-button-prev-banner {
        left: -16px;
    }

    .swiper-button-next-banner {
        right: -16px;
    }
}

.info-page {
    font-size: 16px;
    line-height: 1.44;
}

.info-page > section {
    margin-bottom: 60px;
}

.info-page h2 {
    margin: 0 0 0.75em;

    font-weight: 600;
    font-size: 22px;
}

.info-page ul {
    list-style: disc;
    margin-left: 1em;
}

.info-page ul li:not(:last-child) {
    margin-bottom: 0.5em;
}

.info-page table,
.info-page ul,
.info-page p {
    margin-bottom: 0.75em;
}


.info-page a {
    color: var(--color-primary);
}

.info-page .base-button {
    color: #ffffff;
}

.info-page th,
.info-page td {
    border: 1px solid #D9D9D9;
}

.info-page th {
    padding: 10px;
}

.info-page td {
    padding: 6px 10px;
}

.info-page .table__container {
    width: 100%;
    overflow-x: auto;
}

.info-page .table__container table {
    min-width: 1024px;
}

.external-link {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    transform: translateY(-2px);
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.6667 2.5V4.16667H14.6583L6.46667 12.3583L7.64167 13.5333L15.8333 5.34167V8.33333H17.5V2.5M15.8333 15.8333H4.16667V4.16667H10V2.5H4.16667C3.72464 2.5 3.30072 2.67559 2.98816 2.98816C2.67559 3.30072 2.5 3.72464 2.5 4.16667V15.8333C2.5 16.2754 2.67559 16.6993 2.98816 17.0118C3.30072 17.3244 3.72464 17.5 4.16667 17.5H15.8333C16.2754 17.5 16.6993 17.3244 17.0118 17.0118C17.3244 16.6993 17.5 16.2754 17.5 15.8333V10H15.8333V15.8333Z' fill='%23424242'/%3E%3C/svg%3E%0A") no-repeat center / contain;
}

@media (max-width: 768px) {
    .info-page h2 {
        font-size: 20px;
    }

    .info-page > section {
        margin-bottom: 40px;
    }
}

.about__banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;

    background-color: #eff0f2;

    .d-none {
        display: none;
    }

    @media (min-width: 1024px) {
        padding-left: 0 !important;

        .d-lg-none {
            display: none;
        }

        .d-lg-block {
            display: block;
        }

        .about__img {
            max-width: unset;
            grid-column: 1/3;
            margin-bottom: 0;
        }

        .about__text {
            padding-left: 40px;
            grid-row: 1/2;
        }

        .about__logo {
            margin-bottom: 0;
            margin-top: 60px;
            z-index: 1;
        }
    }
}

.about__logo {
    width: 100%;
    max-width: 380px;
    margin-bottom: 20px;
    display: block;
}

.about__img {
    margin-bottom: 20px;
    max-width: 768px;
    width: 100%;
}

.about__text {
    width: 100%;
}

@media (min-width: 768px) {
    .about__banner {
        padding: 40px 20px 40px 40px;
    }

    .about__logo {
        margin-bottom: 34px;
    }
}

@supports (display: grid) {
    @media (min-width: 992px) {
        .about__banner {
            display: grid;
            justify-content: space-between;
            grid-template-columns: 37% 56%;
            padding-right: 0;
        }

        .about__img {
            grid-column: 2 / 3;
            grid-row: 1 / 3;
            margin-bottom: 0;
        }

        .about__logo {
            grid-column: 1 / 2;
            grid-row: 1 / 2;
        }

        .about__text {
            grid-column: 1 / 2;
            grid-row: 2 / 3;
            margin-bottom: 0;
        }
    }

    @media (min-width: 1280px) {
        .about__banner {
            padding: 70px 0 70px 90px;
        }
    }
}

.advantages {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.advantages__item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    text-align: center;
    font-size: 14px;
    line-height: 1.4;
}

.advantages__img {
    margin-bottom: 26px;
}

.advantages__title {
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 1.2em;
}

@media (min-width: 600px) {
    .advantages {
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
    }

    .advantages__item {
        width: calc(50% - 40px);
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (min-width: 992px) {
    .advantages {
        margin-left: -30px;
        margin-right: -30px;
        width: calc(100% + 60px);
    }

    .advantages__item {
        width: calc(33.33% - 60px);
        margin-left: 30px;
        margin-right: 30px;

        font-size: 16px;
    }

}

.locations {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
}

.location {
    position: relative;

    margin-bottom: 16px;

    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #424242;

    cursor: pointer;
}

.location__radio {
    opacity: 0;
}

.location__label {
    padding-left: 21px;
}

.location__label::before {
    content: '';

    background: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='1.41421' y1='7.07586' x2='4.59395' y2='10.2454' stroke='%23var(--color-primary)' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='10.2529' y1='4.58902' x2='4.59608' y2='10.2459' stroke='%23var(--color-primary)' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A") no-repeat center;
    background-size: contain;
    opacity: 0;
}

.location__radio:checked ~ .location__label::before {
    opacity: 1;
}

.location__radio,
.location__label::before {
    position: absolute;
    top: 2px;
    left: 0;

    width: 12px;
    height: 12px;
}

.agreement {
    position: relative;
    margin-bottom: 14px;
}

.summary__row.agreement {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.agreement__radio {
    opacity: 0;
}

.checkout__body, .checkout {
    position: relative;
}

.checkout .checkout__summary.summary {
    position: sticky;
    right: 0;
    left: 0;
    top: 160px;
}

.checkout__summary .agreement__label {
    padding-left: 8px;
}

.agreement__label a {
    color: var(--color-primary);
}

.checkout__summary .agreement__radio, .checkout__summary .agreement__label::before {
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
}

.checkout__summary .agreement__label::before {
    content: '';
    /* background: url(data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='1.41421' y1='7.07586' x2='4.59395' y2='10.2454' stroke='%23var(--color-primary)' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='10.2529' y1='4.58902' x2='4.59608' y2='10.2459' stroke='%23var(--color-primary)' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A) no-repeat center; */
    background-size: contain;
    opacity: 1;
    width: 18px;
    height: 18px;
    position: absolute;
    background: #ffffff;
    border-radius: 2px;
    border: 1px solid #F5F5F5;

}

.checkout__summary .agreement__radio:checked ~ .agreement__label::before {
    opacity: 1;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDExIDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xIDMuMzg0NjZMNC4wOCA2LjQwMDA1TDkuOCAwLjgwMDA0OSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIi8+Cjwvc3ZnPgo=);
    background-repeat: no-repeat;
    background-position: 50%;
    position: absolute;
    background-color: var(--color-primary);
    border-radius: 2px;
    /* transition: .05s ease; */
}

.popup-window.bx-blue .btn.btn-default {
    width: 100%;
    height: 100%;
    display: block;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.popup-window-close-icon {
    cursor: pointer;
    background-color: var(--color-primary);
    position: absolute;
    right: -38px;
    width: 38px;
    height: 38px;
    top: 0;
    opacity: 1
}

.popup-window-close-icon::after {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: 16px;
    height: 16px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2IiBmaWxsPSJ3aGl0ZSI+DQogICAgICAgIDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMC45Mjg0MzggMTMuNjU2NkMwLjUzNzkxMyAxNC4wNDcxIDAuNTM3OTEzIDE0LjY4MDIgMC45Mjg0MzggMTUuMDcwOEMxLjMxODk2IDE1LjQ2MTMgMS45NTIxMyAxNS40NjEzIDIuMzQyNjUgMTUuMDcwOEw3Ljk5OTI4IDkuNDE0MTRMMTMuNjU2MSAxNS4wNzA5QzE0LjA0NjYgMTUuNDYxNCAxNC42Nzk4IDE1LjQ2MTQgMTUuMDcwMyAxNS4wNzA5QzE1LjQ2MDggMTQuNjgwNCAxNS40NjA4IDE0LjA0NzIgMTUuMDcwMyAxMy42NTY3TDkuNDEzNSA3Ljk5OTkyTDE1LjA3MDYgMi4zNDI4NUMxNS40NjExIDEuOTUyMzMgMTUuNDYxMSAxLjMxOTE2IDE1LjA3MDYgMC45Mjg2MzZDMTQuNjggMC41MzgxMTEgMTQuMDQ2OSAwLjUzODExMiAxMy42NTY0IDAuOTI4NjM2TDcuOTk5MjggNi41ODU3MUwyLjM0MjM2IDAuOTI4Nzg4QzEuOTUxODQgMC41MzgyNjQgMS4zMTg2NyAwLjUzODI2NCAwLjkyODE0NiAwLjkyODc4OEMwLjUzNzYyMiAxLjMxOTMxIDAuNTM3NjIyIDEuOTUyNDggMC45MjgxNDYgMi4zNDNMNi41ODUwNyA3Ljk5OTkyTDAuOTI4NDM4IDEzLjY1NjZaIi8+DQo8L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
}

.form__info.info {
    /* height: 55px; */
    overflow: hidden;
    text-overflow: ellipsis;
    transition: height 0.3s ease;
}

.form__info.info.visible {
    height: auto;
    overflow: auto;
    transition: height 0.3s ease;
}

.info__show-more {
    width: 100%;
    font-size: 14px;
    padding: 7px 0;
    display: none;
    text-align: center;
    color: var(--color-primary);
    text-decoration: none;
}

.offer {
    padding-bottom: 23px;
}

.offer__container, .novelties__container {
    display: flex;
    row-gap: 20px;
}

.offer__slider-main, .novelties__slider-main {
    width: calc(100% - 290px);
    padding: 0 20px;
    margin-left: -20px;
    position: relative;
}

.offer__slider {
    width: 100%;
    min-width: 0;
    height: 468px;
    overflow: hidden;
    position: relative;
}

.offer__slider .swiper-slide, .novelties__slider .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 100%;
    height: auto;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

/* .offer__slider .swiper-slide::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(270.41deg, #6D7D92 0.44%, rgba(129, 148, 172, 0) 87.51%);
  opacity: 0.6;
} */

.offer__slider .swiper-slide picture {
    width: 100%;
    height: 100%;
}

.offer__slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.offer__slider .slide__content {
    width: 100%;
    max-width: 325px;
    padding: 0 8px;
    margin: 0 auto;
    position: absolute;
    top: 50px;
    left: 45px;
    z-index: 10;
    opacity: 1;
    color: #ffffff;
}

.offer__slider .slide__content p {
    font-size: 14px;
    line-height: 1.56;
}

.offer__slider h1, .offer__slider h2 {
    font-weight: 400;
    color: #ffffff;
    font-weight: 700;
    font-size: 48px;
    line-height: 50px;
    margin-bottom: 11px;
}

.offer__slider .supText {
    font-weight: 700;
    font-size: 11px;
    line-height: 24px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #FFFFFF;
    opacity: 0.6;
    margin-bottom: 0;
}

.offer__slider .slide__price-box {
    margin-top: 17px;
}

.offer__slider .slide__price-box span {
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    color: #FFFFFF;
    opacity: 0.6;
    margin-bottom: 1px;
}

.offer__slider .slide__price {
    display: flex;
    align-items: baseline;
    column-gap: 12px;
    font-weight: 700;
    color: #FFFFFF;
    margin-top: -4px;
}

.offer__slider .slide__price .current {
    font-size: 32px;
    line-height: 44px;
}

.offer__slider .slide__price .current span {
    font-size: 20px;
    line-height: 27px;
    opacity: 1;
}

.offer__slider .slide__price .old {
    font-size: 17.5284px;
    line-height: 24px;
    text-decoration: line-through;
}

.offer__slider .slide__price .old span {
    font-size: 14.607px;
    line-height: 20px;
    opacity: 1;
}

.offer__slider .base-button {
    display: inline-block;
    margin-top: 17px;
    padding: 14px 37px 16px;
}

.offer__banner, .novelties__banner {
    width: 310px;
    min-width: 0;
    overflow: hidden;
    position: relative;
    border-radius: 2px;
}

.offer__banner {
    height: 468px;
}

.novelties__banner {
    height: 250px;
}

.offer__banner a, .banner-content, .novelties__banner a {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}

.banner-content a:hover {
    color: inherit;
}

.offer__banner .banner__text {
    position: absolute;
    top: 34px;
    left: 32px;
    max-width: 65%;
    z-index: 10;
    opacity: 1;
    /* color: #ffffff; */
    height: 63.5%;
    display: flex;
    flex-direction: column;
}

.offer__banner .banner__text h2 {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 9px;
    margin-top: auto;
    /* filter: invert(1); */
    mix-blend-mode: multiply;
}

.offer__banner .banner__icon {
    width: 34px;
    height: 34px;
}

.offer__banner .banner__icon img {
    position: relative;
}

.offer__banner .banner__price {
    display: flex;
    align-items: baseline;
    column-gap: 7px;
    font-weight: 700;
    /* color: #FFFFFF; */
    mix-blend-mode: multiply;
}

.offer__banner .banner__price .current {
    font-size: 24px;
    line-height: 33px;
    color: var(--color-primary);
}

.offer__banner .banner__price .current span {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-primary);
}

.offer__banner .banner__price .old {
    font-size: 14px;
    line-height: 1.5;
    text-decoration: line-through;
    /* filter: invert(1); */
    mix-blend-mode: multiply;
}

.offer__banner .banner__price .old span {
    font-size: 12px;
    line-height: 16px;
}

.offer__banner img, .novelties__banner img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 420px) {
    .offer__banner img, .novelties__banner img {
        object-fit: fill;
    }
}

.novelties__banner .banner__text {
    position: absolute;
    top: 27px;
    left: 25px;
    bottom: 34px;
    max-width: 73%;
    z-index: 10;
    opacity: 1;
    color: #ffffff;
    height: 75.5%;
    display: flex;
    flex-direction: column;
}

.novelties__banner .banner__badge {
    width: min-content;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.54;
    color: #FFFFFF;
    padding: 2px 10px 4px;
    background: var(--color-primary);
    border-radius: 2px;
}

.novelties__banner .banner__text h3 {
    font-weight: 400;
    font-size: 32px;
    line-height: 34px;
    margin-top: auto;
    margin-bottom: 12px;
}

.novelties__banner .banner__text p {
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    color: var(--color-primary);
}

.novelties__slider .novelties__content {
    width: auto;
    padding: 0;
    margin: 0 auto;
    position: absolute;
    top: 11%;
    left: 11.5%;
    right: 10%;
    z-index: 10;
    opacity: 1;
    color: #454545;
    display: flex;
}

.novelties__slider .novelties__img {
    /* width: 183px; */
    width: 49%;
    max-width: 183px;
    flex-shrink: 0;
    margin-right: 32px;
}

.novelties__description {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    max-width: 143px;
}

.novelties__description h3 {
    /* margin-top: 4%; */
    max-width: 143px;
}

.novelties__slider .swiper-slide img {
    display: block;
    /* width: 100%;
  height: 100%; */
    object-fit: cover;
}

.novelties__slide a.btn-reset {
    position: absolute;
    bottom: 20px;
    right: 22px;
    padding: 5px 8px;
}

.novelties__slide a.btn-reset svg {
    width: 19px;
    height: 16px;
}

.novelties__slider .swiper-slide {
    background: linear-gradient(90deg, #E6E8EA 0%, #F0F3F5 100%);
}

.novelties__slider {
    width: 100%;
    min-width: 0;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.novelties__text h3 {
    font-weight: 400;
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 9px;
}

.novelties__slide .novelties__text p {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.novel-desc {
    display: flex;
    margin-top: 21px;
}

.novel-desc div {
    font-size: 11px;
    line-height: 15px;
    color: #808080;
    padding: 5px 10px;
    border: 1px solid var(--color-primary);
    border-radius: 90px;
    white-space: nowrap;
}

.novel-desc div:not(:last-child) {
    margin-right: 6px;
}

.novel-price {
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    margin-top: 2px;
}

.novel-price span {
    font-size: 16px;
}

.container__nav {
    width: 100%;
    display: flex;
    align-items: center;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: -20px;
    right: -20px;
    bottom: auto;
    padding: 7px 0;
    margin: 0 auto;
}

.posts .container__nav {
    top: calc(50% + 21px);
}

.offer .swiper-button-prev, .offer .swiper-button-next,
.novelties .swiper-button-prev, .novelties .swiper-button-next,
.posts .swiper-button-prev, .posts .swiper-button-next {
    width: 42px;
    height: 42px;
    background-color: #f5f5f5;
    border-radius: 50%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    cursor: pointer;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.offer .swiper-button-prev:hover, .offer .swiper-button-next:hover,
.novelties .swiper-button-prev:hover, .novelties .swiper-button-next:hover,
.posts .swiper-button-prev:hover, .posts .swiper-button-next:hover {
    background-color: var(--color-primary);
}

.offer .swiper-button-next,
.novelties .swiper-button-next,
.posts .swiper-button-next {
    right: 0;
}

.offer .swiper-button-prev,
.novelties .swiper-button-prev,
.posts .swiper-button-prev {
    left: 0;
}

.offer .swiper-button-prev svg,
.novelties .swiper-button-prev svg,
.posts .swiper-button-prev svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.offer .swiper-button-prev svg, .offer .swiper-button-next svg,
.novelties .swiper-button-prev svg, .novelties .swiper-button-next svg,
.posts .swiper-button-prev svg, .posts .swiper-button-next svg {
    width: 11px;
    height: 11px;
    fill: #ACACAC;
}

.offer .swiper-button-prev:hover svg, .offer .swiper-button-next:hover svg,
.novelties .swiper-button-prev:hover svg, .novelties .swiper-button-next:hover svg,
.posts .swiper-button-prev:hover svg, .posts .swiper-button-next:hover svg {
    fill: #ffffff;
}

.container__nav .swiper-button-prev.swiper-button-disabled, .container__nav .swiper-button-next.swiper-button-disabled {
    opacity: 0.8;
}

.swiper-button-prev::after, .swiper-container-rtl .swiper-button-next::after,
.swiper-button-next::after, .swiper-container-rtl .swiper-button-prev::after {
    /* display: none; */
    content: '';
}

.special {
    padding: 20px 0 7px;
}

.novelties, .best-sale {
    padding: 20px 0 23px;
}

.special .card__recently.card__also-purchased {
    padding-bottom: 0;
}

.special h2.h1--thin {
    font-size: 28px;
    margin-bottom: 17px;
}

.special .tabs__button {
    padding-left: 0;
    padding-right: 0;
}

.novelties h2.h1--thin, .best-sale h2.h1--thin, .posts h2.h1--thin {
    font-size: 28px;
    margin-bottom: 20px;
}

.stock-other h2.h1--thin {
    font-size: 28px;
    margin-bottom: 20px;
}

.best-sale .card__recently.card__also-purchased {
    padding-bottom: 0;
}

.posts {
    position: relative;
    padding-bottom: 12px;
}

.posts.news {
    padding-bottom: 20px;
}

.posts.posts-stocks {
    padding-bottom: 60px;
}

.posts.stock-other {
    position: relative;
    padding-bottom: 75px;
}

.posts .container-slider {
    position: relative;
    width: calc(100% + 40px);
    padding: 0 20px;
    margin-left: -20px;
    margin-right: -20px;
}

.posts__container {
    position: relative;
}

.posts__slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
    min-width: 0;
    position: relative;
}

.posts__list {
    align-content: stretch;
}

.posts__slider .posts__item {
    display: flex;
    border-radius: 2px;
    background: #F0F2F5;
    overflow: hidden;
    height: auto;
}

.posts__news .posts__item {
    display: flex;
    border-radius: 2px;
    background: #F0F2F5;
    overflow: hidden;
    height: auto;
}

.posts__news .posts__list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.posts__news .posts__item {
    width: calc(33.33% - 14px);
}

.posts__image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.posts__badge {
    position: absolute;
    left: 0;
    bottom: 0.5px;
    max-width: 100%;
    color: #ffffff;
    font-size: 14px;
    line-height: 22px;
    padding: 7px 16px 9px;
    background: var(--color-primary);
    border-radius: 2px;
}

.posts__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.posts__text {
    padding: 25px 29px 32px 32px;
    text-overflow: ellipsis;
}

.posts__news .posts__text {
    padding: 27px 29px 26px 33px;
}


.posts__text-block {
    text-align: left;
}

.posts__date {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #858585;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}

.posts__date svg {
    stroke: var(--color-primary);
    fill: transparent;
    margin-right: 5px;
}

.posts__text-block h3 {
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    color: #424242;
    margin-bottom: 15px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.posts__text-block p {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #424242;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

@media (min-width: 992px) {
    .posts__slider .posts__item {
        max-width: 420px;
    }
}

@media (min-width: 768px) {
    .special.special-stocks {
        padding-top: 60px;
        padding-bottom: 70px;
    }

    .special h2.h1--thin {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .novelties h2.h1--thin, .posts h2.h1--thin {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .stock-other h2.h1--thin {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .best-sale h2.h1--thin {
        font-size: 32px;
        margin-bottom: 9px;
    }

    .special .tabs__section {
        padding: 24px 0 0 0;
        width: calc(100% + 16px);
        margin-left: -8px;
        margin-right: -8px;
    }

    .best-sale .card__recently.card__also-purchased {
        width: calc(100% + 16px);
        margin-left: -8px;
        margin-right: -8px;
    }

    .special .tabs__button {
        margin-right: 50px;
    }

    .posts {
        padding-bottom: 60px;
    }

    .posts.posts-stocks {
        padding-bottom: 75px;
    }

    .posts.stock-other {
        padding-bottom: 90px;
    }
}


.pay-delivery .delivery__tabs .tabs__label {
    margin-left: 0;
    margin-right: -2px;
    max-width: 310px;
    font-size: 14px;
    text-align: left;
    padding: 18px 30px 23px;
}

.pay-delivery {
    min-height: 30vh;
}

.pay-delivery .tabs__input ~ .tabs__label img {
    width: 24px;
    height: 24px;
    margin-bottom: -6px;
    margin-right: 11px;
    -webkit-transition: fill 250ms ease;
    -o-transition: fill 250ms ease;
    transition: fill 250ms ease;
}

.pay-delivery .tabs__input:checked + .tabs__label img, .pay-delivery .tabs__input:hover + .tabs__label img, .pay-delivery .tabs__input:not(:checked):hover + .tabs__label img {
    filter: brightness(0) invert(1) !important;
}

.pay-delivery .panel__info {
    padding-top: 45px;
}

.notification__block:not(:last-child) {
    margin-bottom: 50px;
}

.notification__block-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px
}

.notification__block-flex .notification {
    flex: 1 0;
    padding-right: 3%;
}

.notification__block-flex .delivery-conditions {
    width: 33%;
    max-width: 420px;
}

.notification__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    font-size: 28px;
    line-height: 1;
    margin-bottom: 26px;
}

.notification__title img {
    width: 26px;
    width: 26px;
    flex-shrink: 0;
    margin-right: 10px;
}

.notification__text {
    font-size: 16px;
    line-height: 24px;
}

.notification__text p:not(:last-child) {
    margin-bottom: 10px;
}

.notification__subtext {
    display: block;
    font-size: 18px;
}

.notification span {
    font-weight: 700;
}

.notification__text ol.check-list {
    font-size: 16px;
    line-height: 24px;
}

.notification__list {
    margin-top: 15px;
    margin-bottom: 30px;
}

.card-method {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-content: stretch;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 8px;
    margin-bottom: 35px;
}

.card-method__item {
    padding: 30px 26px;
    border: 1px solid #EBEBEB;
    border-radius: 3px;
    width: calc(25% - 15px);
}

.card-method__item img {
    display: block;
    max-width: 166px;
    margin-bottom: 18px;
}

.card-method__title {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
}

.card-method__variant {
    display: flex;
    margin-bottom: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.card-method__variant span {
    white-space: nowrap;
}

.card-method__variant span.orange-color {
    font-weight: 400;
    margin-left: 9px;
}

.card-method__item p {
    font-size: 14px;
    line-height: 22px;
    color: #808080;
}

.delivery-conditions {
    padding: 24px 34px 32px;
}

.delivery-conditions p {
    margin-bottom: 11px;
}

.delivery-conditions p.conditions__sum {
    font-size: 20px;
}

.conditions__total {
    display: block;
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    text-align: right;
    margin-left: auto;
    padding-top: 24px;
}

@media (max-width: 1200px) {
    .card-method__item {
        width: calc(33% - 11px);
    }
}

@media (max-width: 992px) {
    .offer__banner, .offer__slider {
        height: 420px;
    }

    .offer__container {
        flex-direction: column;
    }

    .offer__slider .slide__content {
        max-width: 260px;
        top: 40px;
        left: 26px;
    }

    .offer__banner {
        width: 100%;
    }

    .offer__slider-main {
        width: calc(100% + 40px);
    }

    .offer__banner, .offer__slider {
        height: 400px;
    }

    .novelties__slider .novelties__img {
        width: 150px;
        margin-right: 20px;
    }

    .notification__block-flex {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .notification__block-flex .notification {
        /* flex: 1; */
        width: 100%;
        min-width: 100%;
        padding-right: 0;
    }

    .notification__block-flex .delivery-conditions {
        width: calc(50% - 10px);
        max-width: inherit;
    }

    .posts__news .posts__item {
        width: calc(50% - 10px);
    }

    .posts__news .posts__list {
        margin-bottom: 16px;
    }
}

@media (max-width: 860px) {
    .novelties__container {
        flex-direction: column;
    }

    .offer__slider-main, .novelties__slider-main {
        width: calc(100% + 40px);
    }

    .offer__banner, .novelties__banner {
        width: 100%;
    }

    .novelties__description {
        max-width: inherit;
    }

    .novelties__description h3 {
        max-width: inherit;
    }

    .card-method__item {
        width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .offer__banner, .offer__slider {
        height: 370px;
    }

    .novelties__slider .novelties__img {
        width: 130px;
        margin-right: 12px;
    }

    .offer__slider .slide__content {
        max-width: 220px;
        top: 35px;
        left: 30px;
    }

    .offer__slider h1, .offer__slider h2 {
        font-size: 38px;
        line-height: 1.06;
    }

    .offer__slider .slide__price-box {
        margin-top: 13px;
    }

    .offer__slider .slide__price .current {
        font-size: 19px;
        line-height: 26px;
    }

    .offer__slider .slide__price .current span {
        font-size: 11px;
        line-height: 15px;
    }

    .offer__slider .slide__price .old {
        font-size: 10.5px;
        line-height: 14px;
    }

    .offer__slider .slide__price .old span {
        font-size: 9px;
        line-height: 12px;
    }

    .offer__slider .base-button {
        margin-top: 14px;
        font-weight: 600;
        font-size: 9px;
        line-height: 13px;
        padding: 8px 22px 10px;
    }

    .special, .novelties, .best-sale {
        padding: 16px 0;
    }

    .special.special-stocks {
        padding-top: 43px;
        padding-bottom: 55px;
    }

    .novelties__text h3 {
        font-size: 20px;
        line-height: 26px;
    }

    .posts__text {
        padding: 20px 20px 28px 20px;
    }

    .posts.news {
        padding-bottom: 42px;
    }

    .posts__news .posts__text {
        padding: 23px 20px 24px;
    }

    .posts__text-block h3 {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 10px;
    }

    .novel-desc {
        margin-top: 7px;
    }

    .posts__badge {
        font-size: 12px;
        line-height: 1.4;
        padding: 4px 10px 6px;
    }

    .novelties__slider .novelties__content {
        top: 22%;
    }
}

@media (max-width: 568px) {
    .offer__slider .supText {
        font-size: 8px;
        line-height: 14px;
    }

    .offer__slider .slide__price-box span {
        font-size: 8px;
        line-height: 11px;
        margin-bottom: -1px;
    }

    .offer__slider h1, .offer__slider h2 {
        font-size: 28px;
    }

    .offer__slider .slide__content p {
        font-size: 9px;
    }

    .offer__slider .slide__content {
        max-width: 220px;
        top: 27px;
        left: 22px;
    }

    .offer__banner, .offer__slider {
        height: 300px;
    }

    .novelties__slider .novelties__content {
        top: 16%;
        left: 4.5%;
        right: 5%;
    }

    .novelties__description {
        margin-top: 0;
    }

    .novelties__description h3 {
        margin-top: 0;
    }

    .novelties__slide .novel-desc {
        margin-top: 15px;
    }

    .posts__image {
        height: 235px;
    }

    .posts__news .posts__item {
        width: 100%;
    }

    .pay-delivery .panel__info {
        padding-top: 35px;
    }

    .notification__title {
        font-size: 24px;
        line-height: 30px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .notification__block:not(:last-child) {
        margin-bottom: 35px;
    }

    .notification__subtext {
        font-size: 16px;
    }

    .card-method {
        margin-top: 4px;
        margin-bottom: 33px;
    }

    .card-method__item {
        width: 100%;
    }

    .delivery-conditions {
        padding: 24px;
    }

    .delivery-conditions p.conditions__sum {
        font-size: 18px;
    }

    .notification__block-flex .delivery-conditions {
        width: 100%;
    }

    .posts__news .posts__list {
        margin-bottom: 10px;
    }
}

@media (max-width: 420px) {
    .offer__banner, .offer__slider {
        height: 260px;
    }

    .novelties__slider {
        height: 235px;
    }

    .posts__image {
        height: 183px;
    }

    .posts .container__nav {
        top: calc(50% + 36px);
    }

    .novelties__banner .banner__text {
        max-width: 70%;
    }
}

.checkout--success {
    margin-bottom: 55px;
    max-width: 920px;
}

.checkout--success p {
    margin-bottom: 15px;
}

@media (max-width: 992px) {
    .checkout--success {
        margin-bottom: 40px;
    }
}


/* карта в Оплате и доставке */

.ymaps-2-1-79-balloon__content, .ymaps-2-1-79-balloon__layout, .ymaps-2-1-79-balloon__tail, .ymaps-2-1-79-balloon__tail:after {
    background-color: #ffffff !important
}

.ymaps-2-1-79-balloon__close {
    position: absolute !important;
    margin: 0 !important;
    top: 0;
    right: 0;
}

.ymaps-2-1-79-balloon__close-button {
    width: 34px !important;
    height: 34px !important;
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg width='11' height='11' viewBox='0 0 11 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.31318 9.72861C8.7037 10.1191 9.33687 10.1191 9.72739 9.72861C10.1179 9.33809 10.1179 8.70492 9.72739 8.3144L6.90062 5.48763L9.72877 2.65982C10.1193 2.26932 10.1194 1.63616 9.72886 1.24561C9.33836 0.855061 8.7052 0.855022 8.31465 1.24552L5.48641 4.07342L2.65633 1.24333C2.2658 0.852808 1.63264 0.852809 1.24211 1.24333C0.851588 1.63386 0.851587 2.26702 1.24211 2.65755L4.07211 5.48754L1.24315 8.31616C0.8526 8.70666 0.852561 9.33982 1.24306 9.73037C1.63356 10.1209 2.26673 10.121 2.65728 9.73046L5.48632 6.90176L8.31318 9.72861Z' fill='%23d9d9d9'/%3E%3C/svg%3E") no-repeat 50% !important;
    background-size: 12px 12px !important;
    opacity: 1 !important;
    transition: opacity .25s ease
}

.ymaps-2-1-79-balloon__content {
    margin: 0 !important;
    padding: 23px 28px !important;
    border: 1px solid transparent;
}

.map-balloon {
    display: flex;
    flex-direction: column;
    width: 195px;
    color: #808080;
}

.map-balloon span.list__title {
    display: block;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #454545;
    margin-bottom: 7px;
}

.map-balloon__title {
    padding-right: 0;
    margin-bottom: 14px;
    color: #808080;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px
}

.map-balloon__item {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 20px;
}

.map-balloon__item div b {
    display: block;
    font-weight: 700;
    color: #454545;
    margin-bottom: 7px;
}

@media (hover: hover) {
    .ymaps-2-1-79-balloon__close-button:hover {
        opacity: 1 !important
    }

    .map-balloon__link:hover {
        color: var(--color-primary);
    }
}


.simplebar-content-wrapper {
    scrollbar-width: auto;
    -ms-overflow-style: auto
}

.simplebar-content-wrapper::-webkit-scrollbar, .simplebar-hide-scrollbar::-webkit-scrollbar {
    display: inline;
    display: initial;
    width: auto;
    height: auto
}

.swiper-container-css-mode.recently-swiper > .swiper-wrapper {
    overflow: unset;
}

.catalog__categories {
    position: relative;
    margin-bottom: 20px;
}

.catalog__categories .swiper {
    overflow-x: hidden;
}

.catalog__categories .swiper-button {
    position: absolute;
    top: 50%;
    z-index: 2;

    display: none;
    width: 26px;
    height: 26px;
    padding: 7px;

    color: #ffffff;

    background-color: var(--color-primary);
    border-radius: 50%;

    -webkit-transform: translateY(-50%);

    -ms-transform: translateY(-50%);

    transform: translateY(-50%);
    cursor: pointer;
    -webkit-transition: background-color 250ms ease;
    -o-transition: background-color 250ms ease;
    transition: background-color 250ms ease;
}

.catalog__categories .swiper-button svg {
    display: block;
    width: 11px;
    height: 11px;
    fill: currentColor;
}

.swiper-button-prev-cat {
    left: -20px;
}

.swiper-button-prev-cat svg {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}

.swiper-button-next-cat {
    right: -20px;
}

.catalog__categories {
    margin-left: -10px;
    margin-right: -10px;
    width: calc(100% + 20px);
}

.catalog__categories .swiper-slide {
    height: auto;
    width: 220px;
    padding-left: 10px;
    padding-right: 10px;
}

.catalog__categories a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 14px 20px 10px;
    width: 100%;
    height: 100%;

    font-size: 14px;
    line-height: 18px;
    color: #424242;
    text-decoration: none;

    border: 1px solid #EDEDED;
    border-radius: 3px;
    background-color: white;

    -webkit-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    transition: all 250ms ease;
}

.catalog__categories a img {
    width: 42px;
    height: 42px;
    margin-right: 16px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.rating_text {
    font-size: 12px !important;
}

.footer__copyright {
    font-size: 12px !important;
}

.card-item .card-item__reviews a {
    font-size: 12px !important;
}

@media (hover: hover) {
    .catalog__categories a:hover {
        border-color: var(--color-primary);
    }

    .catalog__categories .swiper-button:hover {
        background-color: var(--color-contrast);
    }
}

@media (max-width: 768px) {
    .swiper-button-prev-cat {
        left: -5px;
    }

    .card-item .card-item__part-number {
        font-size: 12px !important;
    }

    .swiper-button-next-cat {
        right: -5px;
    }

    .card-item__footer .add-to-card {
        font-size: 12px !important;
    }

    .card__header-badges .badges div {
        font-size: 12px !important;
    }
}

@media (max-width: 768px) {
    /*.video__main .video {*/
    /*  height: calc(100vw * 0.34) !important;*/
    /*  padding-bottom: 0px !important;*/
    /*}*/
    .card-detail .card__info {
        margin-bottom: 10px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    /*.video__main .video {*/
    /*  height: calc(100vw * 0.34) !important;*/
    /*  padding-bottom: 0px !important;*/
    /*}*/
}

@media (min-width: 576px) {
    .catalog__categories .swiper-slide {
        width: 50%;
    }
}

@media (min-width: 768px) {
    .catalog__categories .swiper-slide {
        width: 33.33%;
    }
}

@media (min-width: 1080px) {
    .catalog__categories .swiper-slide {
        width: 25%;
    }
}

@media (min-width: 1280px) {
    .catalog__categories .swiper-slide {
        width: 20%;
    }
}

.catalog__categories .swiper-container-initialized ~ .swiper-button:not(.swiper-button-disabled) {
    display: block;
}

.catalog__filter .filter__title::selection,
.catalog__filter .filter__title ::selection,
.catalog__categories a::selection,
.catalog__categories a ::selection,
.banner-content ::selection {
    background: transparent;
}

.filter--categories a {
    display: block;
    margin-bottom: 16px;

    font-size: 14px;
    line-height: 19px;
}

.filter--categories a:last-child {
    margin-bottom: 0;
}

body .popup-window {
    padding: 23px 15px 28px;
}

/* RATING */
.rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.rating_text {
    font-size: 0.8em
}

.dispnone {
    display: none;
}

.shop-list .tabs__section {
    padding: 0
}

textarea[name="ORDER_DESCRIPTION"] {
    resize: none;
}

.main-body .main-content {
    padding-top: 20px;
}

.main-body .main-content h1.card-item__part-number {
    margin-bottom: 15px;
}

.main-content .offer {
    padding-bottom: 15px;
}

.h4-product {
    font-size: 0.875rem;
    font-weight: bold;
}

.news-h1 {
    margin-top: 10px;
}

@media (max-width: 768px) {
    .footer__catalog span {
        color: var(--color-primary);
    }

    .footer__catalog {
        background-color: inherit;
        display: flex;
        align-items: center;
        flex-direction: column;
        border: 0px;
        height: 35px;
        justify-content: flex-end;
        position: relative;
        top: 1px;
    }

    header.header {
        transition: top ease-in-out .3s;
    }

    .footer__catalog .text {
        font-size: 0.6875rem;
        line-height: 15px;
        color: #aaaaaa;
        margin-top: 3px;
    }

    .footer__catalog .burger__line:first-child {
        top: 0;
    }

    .active-catalog .burger__line:first-child {
        transform: rotate(45deg) translate(1px, -1px);
        transform-origin: left top;
    }

    .footer__catalog .burger__line:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .active-catalog .burger__line:nth-child(2) {
        opacity: 0;
    }

    .footer__catalog .burger__line:nth-child(3) {
        bottom: 0;
    }

    .active-catalog .burger__line:nth-child(3) {
        transform: rotate(-45deg) translate(1px, 1px);
        transform-origin: left bottom;
    }
}

.news-tempate ul {
    list-style: disc;
    padding-left: 20px;
}

.news-tempate tbody td {
    border: 0.5px solid #424242;
    padding: 10px;
}

.tagged-page-btn {
    height: auto;
    background-color: white;
    border-radius: 10px;
    border: 0;
    width: fit-content;
    padding: 7px 10px 7px 10px;
    margin-bottom: 5px;
    border: 1px solid white;
}

.tagged-page-btn.active {
    height: auto;
    color: var(--color-primary);
    background-color: white;
    border-radius: 10px;
    border: 1px solid var(--color-primary);
    width: fit-content;
    padding: 7px 40px 7px 10px;
    position: relative;
    font-size: 13px;
    display: inline-block;
}

.tagged-page-btn.active .close-tag_link {
    border-left: 1px solid var(--color-primary);
    height: 100%;
    width: 35px;
    position: absolute;
    top: 0;
    right: 0;
}

.tagged-page-btn.active .close-tag_link::before,
.tagged-page-btn.active .close-tag_link::after {
    content: "";
    position: absolute;
    height: 20px;
    top: 50%;
    left: 50%;
    width: 1px;
    background-color: var(--color-primary);
    display: block;
}

.tagged-page-btn.active .close-tag_link:hover::before,
.tagged-page-btn.active .close-tag_link:hover::after {
    width: 2px;
    height: 22px;
}

.tagged-page-btn.active .close-tag_link::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.tagged-page-btn.active .close-tag_link::after {
    transform: translate(-50%, -50%) rotate(135deg);
}

.tagged-page-btn:hover {
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    cursor: pointer;
}

.tags-wrapper {
    width: 100%;
    white-space: nowrap;
    overflow-x: auto;
}

.tags-wrapper .scroll-content {
    display: inline-block;
}


.scroll-content a {
    display: inline-block;
    white-space: normal;
}

#show-all-tags-btn {
    text-align: center;
    background-color: white;
    border: 1px solid gray;
    border-radius: 10px;
    display: none;
    position: absolute;
    right: 2px;
    top: 2px;
    width: 29px;
    height: 29px;
}

#show-all-tags-btn > svg {
    display: block;
    margin: auto;
    width: 15px;
    height: 15px;
    fill: var(--color-primary);
    margin-top: 6px;
}

#show-all-tags-btn.active {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    fill: var(--color-primary);
}

.tags {
    position: relative;
    overflow: hidden;
}

/* LINK IN REGISTER FORM */
.modal__check a {
    text-decoration: underline
}


.custom .posts__list {
    align-content: stretch;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    margin: 0 -10px;
}

.custom .posts__article {
    border-radius: 2px;
    background: #F0F2F5;
    overflow: hidden;
    width: 100%;
}

.custom .posts__slider .posts__item {
    display: flex;
    height: auto;
    padding: 0 10px 20px;
    width: 33%;
    background: transparent;
    max-width: none;
}

@media (max-width: 992px) {
    .custom .posts__slider .posts__item {
        width: 50%;
    }
}

@media (max-width: 568px) {
    .custom .posts__slider .posts__item {
        width: 100%;
    }
}

.developer {
    font-size: 0.8em;
    margin-top: 5px;
    color: #999;
}

/*** 30799 ***/
.header__logo {
    margin-right: 50px;
}

.game-link {
    display: flex;
    width: 150px;
    flex-shrink: 0;
    align-items: center;
    height: 42px;
    text-align: center;
    margin-right: 10px;
    border: 1px solid var(--color-primary);
    border-radius: 2px;
    padding: 0px 7px;
    justify-content: space-between;
}

.game-link img {
    max-height: 30px;
    margin-right: 5px;
}

.game-link .game-text {
    font-weight: bold;
    margin: 0 auto;
}

.game-link .game-text .orange {
    color: var(--color-contrast);
}

.game-link.mobile-view {
    display: none;
    width: 100%;
    margin-bottom: 10px;
    justify-content: center;
    font-size: 16px;
    padding: 7px;
}

.game-link.mobile-view .game-text {
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .game-link.mobile-view {
        display: flex;
    }

    .game-link.desktop-view {
        display: none;
    }

    .header__contacts-mobile {
        /*top: 78px;*/
    }
}

/*** /30799 ***/