@charset "UTF-8";
@font-face {
    font-family: Montserrat;
    font-display: swap;
    src:
        url(../fonts/Montserrat-Bold.woff2) format("woff2"),
        url(../fonts/Montserrat-Bold.woff) format("woff");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: Montserrat;
    font-display: swap;
    src:
        url(../fonts/Montserrat-Medium.woff2) format("woff2"),
        url(../fonts/Montserrat-Medium.woff) format("woff");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: Montserrat;
    font-display: swap;
    src:
        url(../fonts/Montserrat-Regular.woff2) format("woff2"),
        url(../fonts/Montserrat-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal;
}
* {
    padding: 0;
    margin: 0;
    border: 0;
}
*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body,
html {
    height: 100%;
    min-width: 320px;
}
body {
    color: var(--clr-dark);
    line-height: 1;
    font-family: Montserrat, sans-serif;
    font-size: 0.9375rem;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
button,
input,
textarea {
    font-family: Montserrat, sans-serif;
    font-size: inherit;
}
button {
    cursor: pointer;
    color: inherit;
    background-color: inherit;
}
a {
    color: inherit;
}
a:link,
a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
ul li {
    list-style: none;
}
img {
    vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
}
body {
    font-weight: 500;
}
.lock body {
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
}
:root {
    --clr-red: #e0114f;
    --clr-dark: #000;
    --clr-light: #fff;
    --clr-grey: #d9d9d9;
}
.wrapper {
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
}
.wrapper > main {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
.wrapper > * {
    min-width: 0;
}
[class*="__container"] {
    margin: 0 auto;
    max-width: 73.75rem;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}
body::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: opacity 0.8s ease 0s;
    transition: opacity 0.8s ease 0s;
    pointer-events: none;
    z-index: 149;
}
.popup-show body::after {
    opacity: 1;
}
.popup {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 30px 10px;
    padding-top: 7.5rem;
    -webkit-transition: visibility 0.8s ease 0s;
    transition: visibility 0.8s ease 0s;
    visibility: hidden;
    pointer-events: none;
}
.popup_show {
    z-index: 150;
    visibility: visible;
    overflow: auto;
    pointer-events: auto;
}
.popup_show .popup__content {
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.popup__wrapper {
    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;
    min-height: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    align-items: center;
}
.popup__content {
    visibility: hidden;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.3s ease 0s;
    transition: -webkit-transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s;
    transition:
        transform 0.3s ease 0s,
        -webkit-transform 0.3s ease 0s;
    background-color: #eee;
    padding: 1rem 1.125rem;
    width: 100%;
    max-width: 42.1875rem;
}
.lock .popup__content {
    visibility: visible;
}
.popup {
    font-weight: 400;
    font-size: 0.8125rem;
}
.popup__content {
    position: relative;
    overflow: hidden;
}
.popup__table-block {
    overflow: auto;
}
.popup__close {
    position: absolute;
    top: 1rem;
    left: 1.125rem;
}
.popup__close:not(:last-child) {
    margin-right: 1.125rem;
}
.popup__header {
    padding-left: 1.875rem;
    text-align: center;
    border-bottom: 1px solid #000;
    padding-bottom: 1rem;
}
.popup__header:not(:last-child) {
    margin-bottom: 1rem;
}
.popup__text > span {
    display: inline-block;
    font-weight: 500;
}
.popup__text > span:not(:last-child) {
    margin-bottom: 0.125rem;
}
.popup__text ol li {
    margin-left: 1.0625rem;
}
.popup__text p:not(:last-child) {
    margin-bottom: 0.1875rem;
}
.popup__text div:not(:last-child) {
    margin-bottom: 1rem;
}
.popup__text img {
    margin: 1.0625rem 0;
    max-width: 50%;
    -o-object-fit: contain;
    object-fit: contain;
}
.popup__text ul li {
    position: relative;
    padding-left: 1rem;
}
.popup__text ol li:not(:last-child),
.popup__text ul li:not(:last-child) {
    margin-bottom: 0.3125rem;
}
.popup__text ul li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0.375rem;
    width: 0.125rem;
    height: 0.125rem;
    border-radius: 50%;
    background-color: var(--clr-dark);
    -webkit-transform: translateY(0.4375rem);
    -ms-transform: translateY(0.4375rem);
    transform: translateY(0.4375rem);
}
.popup__text ul.sizelist:not(:last-child) {
    margin-bottom: 0.75rem;
}
.popup__text ul.sizelist li {
    padding-left: 0;
    line-height: 1.26;
}
.popup__text ul.sizelist li::before {
    content: "";
    display: none;
}
.popup__text ul.sizelist li span {
    font-weight: 700;
}
.popup__text ul.sizelist li:not(:last-child) {
    margin-bottom: 0.75rem;
}
.popup__text .subtitle {
    display: inline-block;
    text-decoration: underline;
}
.popup__text .subtitle:not(:last-child) {
    margin-bottom: 0.5rem;
}
.popup__table {
    line-height: 1.4;
}
.popup__table tr:not(:first-child) td {
    white-space: nowrap;
}
.popup__table tr td:first-child div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.popup__table tr td:first-child div span:first-child {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 2.5rem;
    flex: 0 0 2.5rem;
}
.popup__table tr td:first-child div span:last-child {
    font-weight: 700;
}
.popup__table tr td:not(:last-child) {
    margin-right: 0.75rem;
}
.popup__table td {
    padding: 0.6875rem 0.625rem;
    border-bottom: 1px solid #d9d9d9;
}
.popup__table td:first-child {
    padding-left: 0;
}
.popup__table:not(:last-child) {
    margin-bottom: 0.9375rem;
}
.popup .little {
    font-size: 0.625rem;
}
.popup .size {
    font-weight: 700;
}
.spollers {
    display: -ms-grid;
    display: grid;
    row-gap: 0.875rem;
}
.spollers__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 1.75rem;
    flex: 0 0 1.75rem;
}
.spollers__icon:not(:last-child) {
    margin-right: 0.625rem;
}
.spollers__icon svg path {
    -webkit-transition: stroke 0.32s ease-in-out;
    transition: stroke 0.32s ease-in-out;
}
.catalog__link--alone,
.spollers__title {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    cursor: default;
    padding: 0.5rem 0.625rem;
    padding-right: 1.5625rem;
    border-radius: 0.4375rem;
    text-align: left;
    font-weight: 500;
    -webkit-transition: all 0.32s ease-in-out;
    transition: all 0.32s ease-in-out;
}
.catalog__link--alone:focus,
.spollers__title:focus {
    outline: 0;
    background-color: rgba(68, 68, 68, 0.03);
}
.catalog__link--alone:focus .spollers__icon svg path,
.spollers__title:focus .spollers__icon svg path {
    stroke: #444;
}
._spoller-init .catalog__link--alone,
._spoller-init .spollers__title {
    cursor: pointer;
}
._spoller-init .catalog__link--alone::after,
._spoller-init .catalog__link--alone::before,
._spoller-init .spollers__title::after,
._spoller-init .spollers__title::before {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    background-color: #150b3d;
    height: 2px;
    width: 8px;
    border-radius: 20px;
    -webkit-transition: -webkit-transform 0.5s ease 0s;
    transition: -webkit-transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s;
    transition:
        transform 0.5s ease 0s,
        -webkit-transform 0.5s ease 0s;
}
._spoller-init .catalog__link--alone::before,
._spoller-init .spollers__title::before {
    -webkit-transform: translate(0, -105%) rotate(45deg);
    -ms-transform: translate(0, -105%) rotate(45deg);
    transform: translate(0, -105%) rotate(45deg);
}
._spoller-init .catalog__link--alone::after,
._spoller-init .spollers__title::after {
    -webkit-transform: translate(0, 105%) rotate(-45deg);
    -ms-transform: translate(0, 105%) rotate(-45deg);
    transform: translate(0, 105%) rotate(-45deg);
}
._spoller-init .catalog__link--alone._spoller-active,
._spoller-init .spollers__title._spoller-active {
    color: var(--clr-red);
    background-color: rgba(68, 68, 68, 0.05);
}
._spoller-init .catalog__link--alone._spoller-active::before,
._spoller-init .spollers__title._spoller-active::before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
._spoller-init .catalog__link--alone._spoller-active::after,
._spoller-init .spollers__title._spoller-active::after {
    -webkit-transform: translateX(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
}
._spoller-init .catalog__link--alone._spoller-active .spollers__icon svg path,
._spoller-init .spollers__title._spoller-active .spollers__icon svg path {
    stroke: var(--clr-red);
}
.spollers__body {
    padding-top: 1.25rem;
    padding-left: 2.875rem;
}
.spollers__body li:not(:last-child) {
    margin-bottom: 1.6em;
}
.spollers__body li a {
    font-weight: 400;
    line-height: 1.4;
    -webkit-transition: color 0.32s ease-in-out;
    transition: color 0.32s ease-in-out;
}
[class*="-ibg"] {
    position: relative;
}
[class*="-ibg"] img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}
[class*="-ibg_contain"] img {
    -o-object-fit: contain;
    object-fit: contain;
}
._grid {
    display: -ms-grid;
    display: grid;
}
._flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.logo svg path {
    fill: var(--clr-light);
    -webkit-transition: fill 0.32s ease-in-out;
    transition: fill 0.32s ease-in-out;
}
.menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.menu__item:not(:last-child) {
    margin-right: 1.875rem;
}
.menu__link {
    display: block;
    font-size: 1.125rem;
    line-height: 1.4;
    color: var(--clr-light);
    border-bottom: 1px dashed transparent;
    -webkit-transition: border-color 0.32s ease-in-out;
    transition: border-color 0.32s ease-in-out;
}
.icon-menu {
    display: none;
}
.search__form {
    position: relative;
}
.search button {
    position: absolute;
    width: 0.9375rem;
    height: 0.9375rem;
    left: 0.875rem;
    top: 0.5625rem;
}
.search button img {
    max-width: 100%;
}
.search input {
    padding: 0.5rem 1.25rem 0.5rem 2.5rem;
    border-radius: 1.6875rem;
    font-weight: 500;
    -webkit-transition: -webkit-box-shadow 0.32s ease-in-out;
    transition: -webkit-box-shadow 0.32s ease-in-out;
    transition: box-shadow 0.32s ease-in-out;
    transition:
        box-shadow 0.32s ease-in-out,
        -webkit-box-shadow 0.32s ease-in-out;
}
.search input::-webkit-input-placeholder {
    color: #a0a0a0;
}
.search input::-moz-placeholder {
    color: #a0a0a0;
}
.search input:-ms-input-placeholder {
    color: #a0a0a0;
}
.search input::-ms-input-placeholder {
    color: #a0a0a0;
}
.search input::placeholder {
    color: #a0a0a0;
}
.search input:focus {
    outline: 0;
    -webkit-box-shadow:
        inset 2px 2px 3px rgba(0, 0, 0, 0.6),
        inset -2px -2px 3px rgba(0, 0, 0, 0.1);
    box-shadow:
        inset 2px 2px 3px rgba(0, 0, 0, 0.6),
        inset -2px -2px 3px rgba(0, 0, 0, 0.1);
}
.lang {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.lang__btn {
    -webkit-transition: -webkit-transform 0.32s ease-in-out;
    transition: -webkit-transform 0.32s ease-in-out;
    transition: transform 0.32s ease-in-out;
    transition:
        transform 0.32s ease-in-out,
        -webkit-transform 0.32s ease-in-out;
}
.lang__btn:not(:last-child) {
    margin-right: 0.625rem;
}
.lang--open .lang__btn {
    -webkit-transform: rotate(180deg) translateY(-2px);
    -ms-transform: rotate(180deg) translateY(-2px);
    transform: rotate(180deg) translateY(-2px);
}
.lang__list {
    position: absolute;
    top: 1.5625rem;
    left: -0.625rem;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-transform: translateY(20%);
    -ms-transform: translateY(20%);
    transform: translateY(20%);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    border-radius: 3px;
    padding: 3px 0;
    -webkit-transition: all 0.32s ease-in-out;
    transition: all 0.32s ease-in-out;
}
.lang--open .lang__list {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.lang__body {
    position: relative;
    z-index: 20;
}
.lang__active,
.lang__item button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--clr-light);
}
.lang__item {
    padding: 3px 10px;
}
.lang__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 0.9375rem;
    flex: 0 0 0.9375rem;
    height: 0.9375rem;
}
.lang__icon:not(:last-child) {
    margin-right: 0.125rem;
}
.lang__text {
    font-size: 1.125rem;
    line-height: 1.16;
}
.breadcrumbs__list {
    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: 0.125rem;
}
.breadcrumbs__item:not(:last-child) {
    margin-right: 0.625rem;
}
.breadcrumbs__item:not(:last-child)::after {
    content: "/";
    font-weight: 400;
    margin-left: 0.625rem;
}
.breadcrumbs__link {
    font-weight: 400;
    font-size: 0.8125rem;
    border-bottom: 1px dashed transparent;
    -webkit-transition: border-color 0.32s ease-in-out;
    transition: border-color 0.32s ease-in-out;
}
.breadcrumbs__link:focus {
    outline: 0;
    border-bottom-color: #000;
}
.header {
    background-color: #444;
}
.header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 4.375rem;
}
.header__logo {
    margin-right: auto;
}
.header__return {
    display: none;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 1rem;
    flex: 0 0 1rem;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-top: 1.25rem;
    margin-right: 1.125rem;
}
.header__search:not(:last-child) {
    margin-left: 0.625rem;
    margin-right: 2.8125rem;
}
.header__lang:not(:last-child) {
    margin-right: 5rem;
}
.footer {
    min-height: 100px;
}
.page__catalog {
    margin-top: 4.375rem;
}
.catalog__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.catalog__menu-close {
    display: none;
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
}
.catalog__menu-close svg {
    width: 1.75rem;
    height: 1.75rem;
}
.catalog__menu {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 21.25rem;
    flex: 0 0 21.25rem;
    width: 21.25rem;
}
.catalog__menu:not(:last-child) {
    margin-right: 4.0625rem;
}
.catalog__menu .spollers:not(:last-child) {
    margin-bottom: 0.875rem;
}
.catalog__link--active {
    color: var(--clr-red);
}
.catalog__link--alone {
    cursor: pointer;
}
.catalog__link--alone:not(:last-child) {
    margin-bottom: 0.875rem;
}
.catalog__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [3];
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 1.5625rem;
    -moz-column-gap: 1.5625rem;
    column-gap: 1.5625rem;
    row-gap: 1.875rem;
}
.catalog__list.catalog__list--inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [4];
    grid-template-columns: repeat(4, 1fr);
    gap: 1.875rem;
}
.catalog__list.catalog__list--inner:not(:last-child) {
    padding-bottom: 1.875rem;
    margin-bottom: 1.4375rem;
    border-bottom: 1px solid #b4b4b4;
}
.catalog__products--single .catalog__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 1.4375rem;
}
.catalog__settings {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 1.5625rem;
}
.catalog__products-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.catalog__products-header:not(:last-child) {
    margin-bottom: 2.5rem;
}
.catalog__breadcrumbs {
    margin-right: auto;
}
.catalog__item {
    min-width: 0;
}
.catalog__products--single .catalog__item:not(:last-child) {
    border-bottom: 1px solid #b4b4b4;
}
.catalog__view svg rect {
    fill: #b4b4b4;
    -webkit-transition: fill 0.32s ease-in-out;
    transition: fill 0.32s ease-in-out;
}
.catalog__view:not(:last-child) {
    margin-right: 1.125rem;
}
.catalog__view--active svg rect {
    fill: #000;
}
.catalog__return {
    display: none;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 2.3125rem;
    flex: 0 0 2.3125rem;
    width: 2.3125rem;
    height: 2.3125rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #444;
    border-radius: 7px;
}
.catalog__return:not(:last-child) {
    margin-right: 0.75rem;
}
.catalog__active-category {
    display: none;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0.5rem 0.625rem;
    background-color: #444;
    border-radius: 7px;
}
.catalog__active-category span {
    color: var(--clr-light);
    line-height: 1.4;
}
.catalog__active-category a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.product {
    display: block;
}
.product__slider {
    position: relative;
}
.product__slider:not(:last-child) {
    margin-bottom: 1.0625rem;
}
.product__slider .swiper-slide img {
    height: 11.1875rem;
    -o-object-fit: cover;
    object-fit: cover;
}
.product__image {
    height: 9.0625rem;
}
.product__image:not(:last-child) {
    margin-bottom: 0.8125rem;
}
.product__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 0.5625rem;
    -webkit-transition: -webkit-box-shadow 0.32s ease-in-out;
    transition: -webkit-box-shadow 0.32s ease-in-out;
    transition: box-shadow 0.32s ease-in-out;
    transition:
        box-shadow 0.32s ease-in-out,
        -webkit-box-shadow 0.32s ease-in-out;
}
.product__title {
    text-align: center;
    font-weight: 700;
    line-height: 1.16;
}
.product__label {
    position: absolute;
    z-index: 20;
    top: 4px;
    right: 8px;
}
.product__number {
    position: absolute;
    z-index: 20;
    bottom: 14px;
    right: 8px;
}
.product__name {
    font-size: 0.8125rem;
    line-height: 1.25;
}
.product__name ._hidden {
    display: none;
}
.product__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.product__info {
    display: none;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
.product__link {
    display: none;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    font-size: 0.8125rem;
    line-height: 1.25;
    letter-spacing: 0.39px;
}
.product__link span {
    cursor: pointer;
    border-bottom: 1px dashed transparent;
    -webkit-transition: border-color 0.32s ease-in-out;
    transition: border-color 0.32s ease-in-out;
}
.product__benefits {
    font-weight: 400;
    font-size: 0.8125rem;
    line-height: 1.25;
}
.product__benefits li:not(:last-child) {
    margin-bottom: 0.125rem;
}
.product__benefits li {
    position: relative;
    padding-left: 0.5rem;
}
.product__benefits li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0.125rem;
    height: 0.125rem;
    border-radius: 50%;
    background-color: var(--clr-dark);
    -webkit-transform: translateY(0.5625rem);
    -ms-transform: translateY(0.5625rem);
    transform: translateY(0.5625rem);
}
.product:focus {
    outline: 0;
}
.product:focus .product__img {
    -webkit-box-shadow:
        2px 5px 5px rgba(0, 0, 0, 0.05),
        1px 1px 10px 2px rgba(0, 0, 0, 0.2);
    box-shadow:
        2px 5px 5px rgba(0, 0, 0, 0.05),
        1px 1px 10px 2px rgba(0, 0, 0, 0.2);
}
.catalog__products--single .product {
    cursor: default;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.catalog__products--single .product__slider {
    position: static;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 14rem;
    flex: 0 0 14rem;
    width: 14rem;
}
.catalog__products--single .product__slider .swiper-slide img {
    height: 15rem;
}
.catalog__products--single .product__slider:not(:last-child) {
    margin-right: 1.25rem;
}
.catalog__products--single .product__name {
    font-weight: 700;
    font-size: 1.125rem;
    padding-right: 6.25rem;
}
.catalog__products--single .product__name ._hidden {
    display: inline;
}
.catalog__products--single .product__name:not(:last-child) {
    margin-bottom: 1.1111111111em;
}
.catalog__products--single .product__label img {
    min-width: 6.25rem;
}
.catalog__products--single .product__content {
    padding-bottom: 1.4375rem;
}
.catalog__products--single .product__number {
    display: none;
}
.catalog__products--single .product__info {
    display: block;
}
.catalog__products--single .product__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.swiper-pagination {
    margin-top: 0.3125rem;
    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;
}
.catalog__products--single .swiper-pagination {
    margin-top: 0.5rem;
}
.swiper-pagination-bullet {
    width: 0.3125rem;
    height: 0.3125rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 0.3125rem;
    flex: 0 0 0.3125rem;
    border-radius: 50%;
    background-color: #d9d9d9;
    -webkit-transition: background-color 0.32s ease-in-out;
    transition: background-color 0.32s ease-in-out;
}
.swiper-pagination-bullet:not(:last-child) {
    margin-right: 0.375rem;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #000;
}
.catalog__products--single .swiper-pagination-bullet {
    width: 0.425rem;
    height: 0.425rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 0.425rem;
    flex: 0 0 0.425rem;
}
.catalog__products--single .swiper-pagination-bullet:not(:last-child) {
    margin-right: 0.5rem;
}
.page__card {
    margin-top: 1.875rem;
}
.card__breadcrumbs:not(:last-child) {
    margin-bottom: 1.875rem;
}
.card__body {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 22.125rem 34.6875rem 1fr;
    grid-template-columns: 22.125rem 34.6875rem 1fr;
    -webkit-column-gap: 3.75rem;
    -moz-column-gap: 3.75rem;
    column-gap: 3.75rem;
    min-width: 0;
}
.card__label-mobile {
    display: none;
    position: absolute;
    z-index: 20;
    top: 0.5rem;
    right: 0.5rem;
}
.card__slider-block {
    position: relative;
    overflow: hidden;
}
.card__slider {
    min-width: 0;
}
.card__slider .swiper-pagination {
    display: none;
}
.card__slider .swiper-pagination .swiper-pagination-bullet {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 0.625rem;
    flex: 0 0 0.625rem;
    width: 0.625rem;
    height: 0.625rem;
}
.card__slider .swiper-pagination .swiper-pagination-bullet:not(:last-child) {
    margin-right: 0.75rem;
}
.card__slide img {
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.card__thumbs {
    margin-top: 1.25rem;
}
.card__thumbs .swiper-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.25rem;
}
.card__thumbs .swiper-slide {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 3.125rem;
    flex: 0 0 3.125rem;
    width: 3.125rem;
    border-bottom: 1px solid transparent;
    -webkit-transition: border-color 0.32s ease-in-out;
    transition: border-color 0.32s ease-in-out;
}
.card__thumbs .swiper-slide-thumb-active {
    border-bottom-color: var(--clr-red);
}
.card__content .spollers {
    gap: 0;
}
.card__content .spollers__title {
    padding: 0.75rem 0;
    background-color: transparent;
    border-bottom: 1px solid #d9d9d9;
    border-radius: 0;
}
.card__content .spollers__title ._hidden {
    opacity: 0;
    -webkit-transition: opacity 0.32s ease-in-out;
    transition: opacity 0.32s ease-in-out;
}
.card__content .spollers__title._spoller-active {
    background-color: transparent;
    border-bottom-color: transparent;
    color: #000;
}
.card__content .spollers__title._spoller-active ._hidden {
    opacity: 1;
}
.card__content .spollers__title._spoller-active + .spollers__body {
    border-bottom-color: #d9d9d9;
}
.card__content .spollers__title::before {
    display: none;
}
.card__content .spollers__title::after {
    top: 14px;
    width: 1rem;
    height: 1rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url(../img/card/card-icon.svg);
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.card__content .spollers__title._spoller-active::after {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}
.card__content .spollers__body {
    padding-left: 0;
    padding-top: 0.375rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid transparent;
    -webkit-transition: border-color 0.32s ease-in-out;
    transition: border-color 0.32s ease-in-out;
}
.card__content .tabs__navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: auto;
    padding-bottom: 0.3125rem;
}
.card__content .tabs__navigation:not(:last-child) {
    margin-bottom: 0.1875rem;
}
.card__content .tabs__title {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 2.9375rem;
    flex: 0 0 2.9375rem;
    padding: 0.4375rem 0.9375rem;
    border-radius: 5px;
    background: var(--clr-light);
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    font-weight: 400;
    font-size: 0.8125rem;
    -webkit-transition: all 0.32s ease-in-out;
    transition: all 0.32s ease-in-out;
    margin: 0.375rem;
}
.card__content .tabs__title:last-child {
    margin-right: 0;
}
.card__content .tabs__title._tab-active {
    color: var(--clr-light);
    background: var(--clr-dark);
    -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2);
}
.card__content .tabs__body {
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.4;
}
.card__content .tabs:not(:last-child) {
    margin-bottom: 0.75rem;
}
.card__title {
    max-width: 21.875rem;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.22;
}
.card__title:not(:last-child) {
    margin-bottom: 1.1111111111em;
}
.card__text {
    font-weight: 400;
    font-size: 0.8125rem;
    line-height: 1.25;
}
.card__text ul:not(:last-child) {
    margin-bottom: 0.625rem;
}
.card__text ul li {
    position: relative;
    padding-left: 1rem;
}
.card__text ul li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0.375rem;
    width: 0.125rem;
    height: 0.125rem;
    border-radius: 50%;
    background-color: var(--clr-dark);
    -webkit-transform: translateY(0.5625rem);
    -ms-transform: translateY(0.5625rem);
    transform: translateY(0.5625rem);
}
.card__text ol li:not(:last-child),
.card__text ul li:not(:last-child) {
    margin-bottom: 0.3125rem;
}
.card__text .subtitle {
    text-decoration: underline;
}
.card__text .subtitle:not(:last-child) {
    margin-bottom: 0.5rem;
}
.card__text img {
    max-width: 100%;
}
.card__link {
    display: block;
    font-weight: 400;
    font-size: 0.8125rem;
    text-decoration: underline;
}
.card__link:active,
.card__link:hover {
    text-decoration: none;
}
.card__link:not(:last-child) {
    margin-bottom: 0.3125rem;
}
.card__icons {
    margin-top: 0.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.card__icons > :not(:last-child) {
    margin-right: 0.3125rem;
}
@font-face {
    font-family: swiper-icons;
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
    font-weight: 400;
    font-style: normal;
}
:root {
    --swiper-theme-color: #007aff;
}
:host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
}
.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    overflow: clip;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
}
.swiper-vertical > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property:
        transform,
        -webkit-transform;
    -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.swiper-horizontal {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}
.swiper-vertical {
    -ms-touch-action: pan-x;
    touch-action: pan-x;
}
.swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property:
        transform,
        -webkit-transform;
    display: block;
}
.swiper-slide-invisible-blank {
    visibility: hidden;
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto;
}
.swiper-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition-property:
        height,
        -webkit-transform;
    transition-property:
        height,
        -webkit-transform;
    transition-property: transform, height;
    transition-property:
        transform,
        height,
        -webkit-transform;
}
.swiper-backface-hidden .swiper-slide {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.swiper-3d.swiper-css-mode .swiper-wrapper {
    -webkit-perspective: 1200px;
    perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.swiper-3d {
    -webkit-perspective: 1200px;
    perspective: 1200px;
}
.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
    -ms-scroll-snap-type: y mandatory;
    scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
    -ms-scroll-snap-type: none;
    scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
    content: "";
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-ordinal-group: 10000;
    -ms-flex-order: 9999;
    order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
    -webkit-margin-start: var(--swiper-centered-offset-before);
    margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
    -webkit-margin-before: var(--swiper-centered-offset-before);
    margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after);
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent;
}
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
    -webkit-animation: swiper-preloader-spin 1s infinite linear;
    animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000;
}
@-webkit-keyframes swiper-preloader-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes swiper-preloader-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@media (max-width: 76em) {
    [class*="__container"] {
        max-width: 60.625rem;
    }
    .menu__item:not(:last-child) {
        margin-right: 0.9375rem;
    }
    .menu__link {
        font-size: 1rem;
    }
    .lang__text {
        font-size: 1rem;
    }
    .header__search:not(:last-child) {
        margin-right: 2.1875rem;
    }
    .header__lang:not(:last-child) {
        margin-right: 2.8125rem;
    }
    .catalog__menu:not(:last-child) {
        margin-right: 2.1875rem;
    }
    .card__body {
        -ms-grid-columns: 22.1875rem 1fr;
        grid-template-columns: 22.1875rem 1fr;
    }
    .card__label {
        display: none;
    }
    .card__label-mobile {
        display: block;
    }
}
@media (max-width: 61.99875em) {
    [class*="__container"] {
        max-width: 46.875rem;
    }
    .catalog__list {
        -ms-grid-columns: (1fr) [2];
        grid-template-columns: repeat(2, 1fr);
    }
    .catalog__list.catalog__list--inner {
        -ms-grid-columns: (1fr) [2];
        grid-template-columns: repeat(2, 1fr);
    }
    .catalog__list.catalog__list--inner:not(:last-child) {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 1.875rem;
    }
    .catalog__settings {
        display: none;
    }
    .card__text img {
        max-width: 15.625rem;
    }
}
@media (max-width: 47.99875em) {
    [class*="__container"] {
        max-width: none;
        padding: 0 1.125rem;
    }
    .menu__body {
        position: fixed;
        overflow: auto;
        z-index: 40;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-top: 3.75rem;
        background-color: rgba(0, 0, 0, 0.95);
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.32s ease-in-out;
        transition: all 0.32s ease-in-out;
    }
    .menu-open .menu__body {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    .menu__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .menu__list:not(:last-child) {
        margin-bottom: 2.5rem;
    }
    .menu__item:not(:last-child) {
        margin-right: 0;
        margin-bottom: 1.25rem;
    }
    .menu__link {
        font-size: 1.25rem;
    }
    .icon-menu {
        display: block;
        position: relative;
        width: 1.375rem;
        height: 1.125rem;
        cursor: pointer;
        z-index: 41;
    }
    .icon-menu span,
    .icon-menu::after,
    .icon-menu::before {
        content: "";
        -webkit-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        right: 0;
        position: absolute;
        width: 100%;
        height: 0.125rem;
        background-color: var(--clr-light);
    }
    .icon-menu::before {
        top: 0;
    }
    .icon-menu::after {
        bottom: 0;
    }
    .icon-menu span {
        top: calc(50% - 0.0625rem);
    }
    .menu-open .icon-menu span {
        width: 0;
    }
    .menu-open .icon-menu::before {
        top: calc(50% - 0.0625rem);
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .menu-open .icon-menu::after {
        bottom: calc(50% - 0.0625rem);
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .page__catalog.catalog--inner {
        margin-top: 1.25rem;
    }
    .catalog__menu-close {
        display: block;
    }
    .catalog__menu {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 13.75rem;
        flex: 0 0 13.75rem;
        width: 13.75rem;
    }
    .catalog__list {
        gap: 1.25rem;
    }
    .catalog__list.catalog__list--inner {
        -ms-grid-columns: (1fr) [4];
        grid-template-columns: repeat(4, 1fr);
    }
    .catalog__products-header:not(:last-child):not(:last-child) {
        margin-bottom: 1rem;
    }
    .catalog__return {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .catalog__active-category {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .catalog.catalog--inner .catalog__breadcrumbs {
        display: none;
    }
    .catalog.catalog--inner .catalog__menu {
        position: fixed;
        overflow: auto;
        z-index: 30;
        top: 4.375rem;
        left: 0;
        width: 100%;
        height: calc(100% - 4.375rem);
        background-color: var(--clr-light);
        padding: 2.5rem 3.75rem;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.32s ease-in-out;
        transition: all 0.32s ease-in-out;
    }
    .catalog-open .catalog.catalog--inner .catalog__menu {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    .product__title {
        font-size: 0.875rem;
    }
    .card__body {
        display: block;
    }
    .card__slider .swiper-pagination {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .card__slider .swiper-slide {
        text-align: center;
    }
    .card__slider:not(:last-child) {
        margin-bottom: 1.25rem;
    }
    .card__thumbs {
        display: none;
    }
}
@media (max-width: 40.62375em) {
    .page__catalog {
        margin-top: 1.875rem;
    }
    .catalog__menu {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        width: 100%;
    }
    .catalog__menu:not(:last-child) {
        margin-right: 0;
    }
    .catalog__list {
        display: none;
    }
}
@media (max-width: 36.24875em) {
    .catalog__list.catalog__list--inner {
        -ms-grid-columns: (1fr) [2];
        grid-template-columns: repeat(2, 1fr);
    }
    .catalog--inner .catalog__item:not(:nth-child(2n)) {
        position: relative;
    }
    .catalog--inner .catalog__item:not(:nth-child(2n))::after {
        content: "";
        position: absolute;
        top: 0;
        right: -0.9375rem;
        width: 0.5px;
        height: calc(100% + 30px);
        background-color: #d9d9d9;
    }
    .catalog.catalog--inner {
        max-width: 23.4375rem;
        margin: 0 auto;
        margin-top: 1.25rem;
    }
    .catalog.catalog--inner .catalog__menu {
        padding: 3.125rem 1.25rem 1.875rem;
    }
}
@media (max-width: 29.99875em) {
    .popup {
        padding-top: 1.875rem;
    }
    .popup__text img {
        max-width: 100%;
    }
    .popup__table tr:first-child {
        font-size: 0.625rem;
    }
    .popup__table tr:not(:first-child) {
        font-size: 0.75rem;
    }
    .search input {
        font-size: 0.875rem;
        width: 100%;
    }
    .header__container {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-top: 1.25rem;
        padding-bottom: 0.75rem;
    }
    .header__logo {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(100% - 1.375rem);
        flex: 1 1 calc(100% - 1.375rem);
        width: calc(100% - 1.375rem);
        margin-right: 0;
    }
    .header--inner .header__return {
        display: block;
    }
    .header__search {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        width: 100%;
        margin-top: 1.25rem;
    }
    .header__search:not(:last-child) {
        margin-right: 0;
        margin-left: 0;
    }
    .header--inner .header__search {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
        width: calc(100% - 2.25rem);
    }
    .header__menu {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .catalog__list.catalog__list--inner {
        -webkit-column-gap: 1.125rem;
        -moz-column-gap: 1.125rem;
        column-gap: 1.125rem;
        row-gap: 1.25rem;
    }
    .catalog--inner .catalog__item:not(:nth-child(2n))::after {
        right: -0.5625rem;
        height: calc(100% + 20px);
    }
    .catalog__return {
        display: none;
    }
    .catalog.catalog--inner .catalog__menu {
        top: 6.6125rem;
    }
    .card__breadcrumbs {
        display: none;
    }
    .card__content .tabs__navigation {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
@media (any-hover: hover) {
    .catalog__link--alone:hover,
    .spollers__title:hover {
        background-color: rgba(68, 68, 68, 0.03);
    }
    .catalog__link--alone:hover .spollers__icon svg path,
    .spollers__title:hover .spollers__icon svg path {
        stroke: #444;
    }
    .spollers__body li a:hover {
        color: var(--clr-red);
    }
    .logo:hover svg path {
        fill: var(--clr-grey);
    }
    .menu__link:hover {
        border-bottom-color: var(--clr-light);
    }
    .lang__item:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }
    .breadcrumbs__link:hover {
        border-bottom-color: #000;
    }
    .catalog__view:hover svg rect {
        fill: #000;
    }
    .product__link span:hover {
        border-bottom-color: #000;
    }
    .product:hover .product__img {
        -webkit-box-shadow: 2px 5px 5px rgba(0, 0, 0, 0.05);
        box-shadow: 2px 5px 5px rgba(0, 0, 0, 0.05);
    }
}

/* Стили кабинета */

.wrapper.cabinet .header .header-cabinet-link {
    margin-right: 90px;
    color: #fff;
    font-family: Montserrat;
    font-size: 18px;
}

.wrapper.cabinet .spollers__title:hover,
.wrapper.cabinet .spollers__title:focus {
    background-color: transparent;
}

.wrapper.cabinet .spollers__title._spoller-active .cart-main-ctegory-count {
    opacity: 0;
}

.wrapper.cabinet .cart-main-ctegory-count {
    position: absolute;
    color: #576872;
    font-family: Montserrat;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: block;
    transition: opacity 1s;
    opacity: 1;
}

.wrapper.cabinet .spollers__title .cart-main-ctegory-count {
    top: 36px;
    left: 49px;
}

.wrapper.cabinet .spollers__body._slide .cart-main-ctegory-count {
    display: none;
}

.wrapper.cabinet .cart-main-ctegory-count .wrapper.cabinet .catalog__menu .spollers__body li {
    position: relative;
}

.wrapper.cabinet .catalog__menu .cart-general-info {
    font-size: 14px;
    line-height: normal;
}

.wrapper.cabinet .catalog__menu .cart-general-info .raws {
    border-radius: 6px;
    background: #f5f5f5;
    padding: 14px 18px 22px 18px;
}

.wrapper.cabinet .catalog__menu .cart-general-info .more-link {
    display: inline-block;
    color: #0058fe;
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    margin-top: 4px;
    margin-left: 14px;
    margin-bottom: 31px;
}

.wrapper.cabinet .catalog__menu .cart-general-info .raws .raw {
    display: flex;
    justify-content: space-between;
    background-image: url(../img/strokes.png);
    background-repeat: repeat-x;
    background-position: 80% 77%;
}

.wrapper.cabinet .catalog__menu .cart-general-info .raws .raw .part {
    background: #f5f5f5;
    padding-left: 5px;
}

.wrapper.cabinet .catalog__menu .cart-general-info .raws .raw:first-child {
    margin-bottom: 8px;
}

.wrapper.cabinet .catalog__menu .cart-general-info .raws .raw .part:first-child {
    color: #e0114f;
    padding-left: 0;
    padding-right: 5px;
}
.wrapper.cabinet .catalog__menu {
    position: relative;
}

.wrapper.cabinet .catalog__menu .cart-general-info-more-wrap {
    position: absolute;
    top: 0;
    background-color: rgba(255, 255, 255, 0.5);
    height: 100%;
    width: 100%;
    z-index: 100;
    display: none;
}

.wrapper.cabinet .catalog__menu .cart-general-info-more-wrap.opened {
    display: block;
}

.wrapper.cabinet .catalog__menu .cart-general-info-more {
    border-radius: 6px;
    border: 1px solid #0058fe;
    background: #fff;
    padding-left: 18px;
    padding-right: 18px;
    line-height: normal;
    padding-top: 53px;
}

.wrapper.cabinet .catalog__menu .cart-general-info-more .category {
    margin-bottom: 20px;
}

.wrapper.cabinet .catalog__menu .cart-general-info-more .headline {
    font-size: 13px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    margin-bottom: 9px;
}

.wrapper.cabinet .catalog__menu .cart-general-info-more .subcategory {
    font-size: 11px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.wrapper.cabinet .catalog__menu .cart-general-info-more .close {
    position: absolute;
    width: 14px;
    height: 14px;
    right: 21px;
    top: 21px;
    display: inline-block;
}

.wrapper.cabinet .catalog__products {
    width: calc(100% - 405px);
    font-family: Montserrat;
}

.wrapper.cabinet .in-cart-elements-area .in-cart-element {
    padding-bottom: 17px;
    border-bottom: 1px solid #000;
    margin-bottom: 20px;
}

.wrapper.cabinet .in-cart-elements-area .in-cart-element .top {
    display: flex;
    justify-content: flex-end;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
}

.wrapper.cabinet .in-cart-elements-area .in-cart-element .top .count {
    display: flex;
    min-width: 180px;
    margin-right: 42px;
    justify-content: space-between;
    background-image: url(../img/strokes.png);
    background-repeat: repeat-x;
    background-position: 80% 77%;
}

.wrapper.cabinet .in-cart-elements-area .in-cart-element .top .sum {
    display: flex;
    min-width: 130px;
    justify-content: space-between;
    background-image: url(../img/strokes.png);
    background-repeat: repeat-x;
    background-position: 80% 77%;
}

.wrapper.cabinet .in-cart-elements-area .in-cart-element .top .part {
    background-color: #fff;
    padding-right: 5px;
}

.wrapper.cabinet .in-cart-elements-area .in-cart-element .top .part:last-child {
    padding-right: 0;
    padding-left: 5px;
}

.wrapper.cabinet .in-cart-elements-area .in-cart-element .headline {
    padding: 14px 14px 14px 9px;
    background: rgba(225, 243, 225, 0.8);
    margin-top: 6px;
    display: flex;
    align-items: center;
    position: relative;
}

.wrapper.cabinet .in-cart-elements-area .in-cart-element .headline .name-area {
    width: calc(100% - 160px);
}

.wrapper.cabinet .in-cart-elements-area .in-cart-element .headline .name-area .mark {
    color: #6b747d;
    font-size: 13px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 12px;
}

.wrapper.cabinet .in-cart-elements-area .in-cart-element .headline .name-area .value {
    color: #000;
    font-size: 15px;
    font-weight: 500;
    line-height: normal;
}

.wrapper.cabinet .in-cart-elements-area .in-cart-element .headline a.img {
    position: relative;
}

.wrapper.cabinet .in-cart-elements-area .in-cart-element .headline img {
    width: 53px;
    height: 53px;
}

.wrapper.cabinet .in-cart-elements-area .in-cart-element .headline .arrow {
    position: absolute;
    right: 13px;
    width: 13px;
    height: 13px;
    cursor: pointer;
    transform: rotate(-90deg);
    transition-property: transform;
    transition-duration: 0.5s;
}

.wrapper.cabinet .in-cart-elements-area .in-cart-element.opened .headline .arrow {
    transform: rotate(-0deg);
}

.wrapper.cabinet .in-cart-elements-area .in-cart-element .headline .arrow img {
    width: 13px;
    height: 13px;
}

.wrapper.cabinet .in-cart-elements-area .in-cart-element .table {
    padding-top: 29px;
}

.wrapper.cabinet .in-cart-elements-area .in-cart-element .table .left {
    text-align: left;
}
.wrapper.cabinet .in-cart-elements-area .in-cart-element .table .right {
    text-align: right;
}

/* .wrapper.cabinet .in-cart-elements-area .in-cart-element.opened .table{
    display: block;
}
*/
.wrapper.cabinet .in-cart-elements-area .in-cart-element .table {
    display: none;
}

.wrapper.cabinet .in-cart-elements-area .in-cart-element .table table {
    width: 100%;
    border-collapse: collapse;
}

.wrapper.cabinet .in-cart-elements-area .in-cart-element .table tr.bot-bord td,
.wrapper.cabinet .in-cart-elements-area .in-cart-element .table tr td.bot-bord {
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.wrapper.cabinet .in-cart-elements-area .in-cart-element .table th {
    color: #667685;
    font-size: 13px;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    padding-bottom: 9px;
    padding-left: 11px;
    padding-right: 11px;
}

.wrapper.cabinet .in-cart-elements-area .in-cart-element .table th.first {
    padding-left: 9px;
}

.wrapper.cabinet .in-cart-elements-area .in-cart-element .table td {
    color: #000;
    font-size: 13px;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 11px;
    padding-right: 11px;
}

.wrapper.cabinet .in-cart-elements-area .in-cart-element .table td.number {
    vertical-align: top;
    padding-left: 9px;
    background-color: #fff;
}

.wrapper.cabinet .in-cart-elements-area .in-cart-element .table th .gray {
    background-color: #e2eef6;
}

.wrapper.cabinet .in-cart-elements-area .in-cart-element .table th .green {
    color: #18a676;
}

.wrapper.cabinet .in-cart-elements-area .in-cart-element .table tr:nth-child(2n) {
    background: #f5f5f5;
}

@media (max-width: 1215px) {
    .wrapper.cabinet .header .header__search {
        display: none;
    }
}

@media (max-width: 768px) {
    .wrapper.cabinet .header .header__logo {
        display: none;
    }
    .wrapper.cabinet .header .header__lang {
        display: none;
    }
    .wrapper.cabinet .header .header__container {
        width: 100%;
        justify-content: space-between;
        box-sizing: border-box;
    }
    .wrapper.cabinet .header .header__return {
        display: block;
        order: -1;
        margin-top: 0;
    }

    .wrapper.cabinet .header .header-cabinet-link {
        position: absolute;
        left: 60px;
    }

    .wrapper.cabinet .catalog.catalog--inner .catalog__menu {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        padding: 0;
        top: 0;
        width: 100%;
        flex: 0 0 100%;
    }

    .wrapper.cabinet .catalog.catalog--inner .catalog__products {
        display: none;
    }
}

@media (max-width: 47.99875em) {
    .wrapper.cabinet .catalog__menu .cart-general-info-more-wrap {
        left: 0;
    }
}
