@charset "UTF-8";

@font-face {
    font-family: "Inter Regular";
    src: url("../fonts/Inter-Regular.ttf");
    src: local("Inter Bold"), local("Inter-Bold"),
    url("../fonts/Inter-Regular.ttf") format("truetype"),
    url("../fonts/Inter-Regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Inter-Regular.woff") format("woff"),
    url("../fonts/Inter-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Inter Medium";
    src: url("../fonts/Inter-Medium.ttf");
    src: local("Inter Medium"), local("Inter-Medium"),
    url("../fonts/Inter-Medium.ttf") format("truetype"),
    url("../fonts/Inter-Medium.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Inter-Medium.woff") format("woff"),
    url("../fonts/Inter-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Inter SemiBold";
    src: url("../fonts/Inter-SemiBold.ttf");
    src: local("Inter SemiBold"), local("Inter-SemiBold"),
    url("../fonts/Inter-SemiBold.ttf") format("truetype"),
    url("../fonts/Inter-SemiBold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Inter-SemiBold.woff") format("woff"),
    url("../fonts/Inter-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Inter Bold";
    src: url("../fonts/Inter-Bold.ttf");
    src: local("Inter Bold"), local("Inter-Bold"),
    url("../fonts/Inter-Bold.ttf") format("truetype"),
    url("../fonts/Inter-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Inter-Bold.woff") format("woff"),
    url("../fonts/Inter-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
}

*,
::after,
::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: #000000;
    outline: none;
}

body,
html {
    font-family: "Inter Regular";
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    font-size: 15px;
    min-width: 320px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
}

ul,
li {
    display: block;
    padding: 0px;
    margin: 0px;
}

textarea {
    resize: none;
}

p {
    font-size: 16px;
}

img {
    border-style: none;
}

button {
    border: 0;
    background: transparent;
    padding: 0;
}

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

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

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

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

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

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

input[type="number"],
input[type="number"]:hover,
input[type="number"]:focus {
    -webkit-appearance: none;
    appearance: none;
    -moz-appearance: textfield;
}

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

input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
    display: none;
}

input[type="text"]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input[type="text"]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoratio {
    display: none;
}

[hidden] {
    display: none;
}

p,
nav {
    margin: 0;
    padding: 0;
}

a,
a:hover,
a:active,
a:focus,
button,
input,
button:hover,
button:active,
button:focus,
input:focus,
input:active {
    text-decoration: none;
    outline: none;
    /*  -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition-property: all;
    -webkit-transition-duration: 0.5s;
    -webkit-transition-timing-function: ease;*/
}

input {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="text"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
}

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

.f-jcsb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.f-jcsa {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.f-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.f-jcsb-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.f-jcsa-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.f-center-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.f-dc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.f-dc-jcsb {
    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-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.f-dc-center {
    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;
}

.f-dc-center-center {
    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-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.pt-100 {
    padding-top: 60px;
}

.pb-100 {
    padding-bottom: 60px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

.img-cover {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.img-contain {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
    pointer-events: none;
}

.hidden {
    overflow: hidden;
}

.none {
    display: none;
}

.title {
    font-size: 30px;
    font-family: "Inter Bold";
}

.titleTwo {
    font-size: 28px;
    font-family: "Inter Bold";
}

.titleThree {
    font-size: 24px;
    font-family: "Inter Bold";
}

.titleFour {
    font-family: "Inter Bold";
    font-size: 20px;
}

.titleFour span {
    font-family: "Inter Bold";
    font-size: 20px;
}

.breadcrumbs-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.breadcrumbs-list li {
    position: relative;
}

.breadcrumbs-list li a {
    font-size: 14px;
}

.breadcrumbs-list li a span {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #a5a5a5;
    font-size: 14px;
}

.breadcrumbs-list li:not(:first-child)::before {
    content: "/";
    margin: 0 6px;
    color: #a5a5a5;
}

.breadcrumbs-list li:not(:last-child):hover span {
    color: #393939;
}

.breadcrumbs-list li:last-child a span {
    color: #393939;
}

.bgGray {
    background: #f4f4f4;
}

.btn {
    width: 100%;
    padding: 13px 24px;
    display: inline-block;
    text-align: center;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn svg path {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn.darkGray {
    background: #393939;
    color: #fff;
}

.btn.darkGray span {
    background: #393939;
    color: #fff;
}

.btn.darkGray:hover {
    background: #1f1f1f;
    color: #f4c713;
}

.btn.darkGray:hover span {
    background: #1f1f1f;
    color: #f4c713;
}

.btn.darkGray:active {
    color: #f4c713;
    background: #393939;
}

.btn.darkGray:active span {
    background: #1f1f1f;
    color: #f4c713;
}

.btn.gray {
    background: #dfdfdf;
    color: rgba(76, 76, 76, 0.8);
}

.btn.svetGray {
    color: #4c4c4c;
    background: #f4f4f4;
    margin-bottom: 30px;
    margin-top: 30px;
}

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

.btn.yellow {
    background: #f4c713;
}

.btn.yellow:hover {
    background: #1f1f1f;
    color: #f4c713;
}

.btn.yellow:hover svg path {
    fill: #f4c713;
}

.btn.yellow:active {
    color: #f4c713;
    background: #393939;
}

.btn.yellow:active svg path {
    fill: #f4c713;
}

.productUsualItem {
    width: 278px;
    height: auto;
}

.productUsualItem__link {
    height: 100%;
}

.productUsualItem__image {
    height: 278px;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    margin-bottom: 18px;
    -webkit-box-shadow: 0px 7px 42px rgba(227, 227, 227, 0.23);
    box-shadow: 0px 7px 42px rgba(227, 227, 227, 0.23);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.productUsualItem__image img {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.productUsualItem__label {
    color: #fff9f9;
    padding: 8px;
    border-radius: 5px;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 12px;
    font-family: "Inter SemiBold";
}

.productUsualItem__label.orange {
    background: #fda539;
}

.productUsualItem__label.green {
    background: #3ec75e;
}

.productUsualItem__label.red {
    background: #ee4141;
}

.productUsualItem__article {
    color: #a5a5a5;
    font-size: 14px;
    margin-bottom: 8px;
}

.productUsualItem__article span {
    color: #a5a5a5;
    font-size: 14px;
}

.productUsualItem__name {
    color: #1f1f1f;
    margin-bottom: 8px;
    font-family: "Inter Medium";
    word-break: break-all;
}

.productUsualItem__status {
    font-family: "Inter Medium";
    font-size: 14px;
    display: inline-block;
    margin-bottom: 16px;
    margin-top: auto;
}

.productUsualItem__status.gray {
    color: #a5a5a5;
}

.productUsualItem__status.green {
    color: #3ec75e;
}

.productUsualItem__status.red {
    background: #ee4141;
}

.productUsualItem__cost {
    margin-bottom: 16px;
}

.productUsualItem__cost-main {
    display: inline;
    margin-right: 8px;
}

.productUsualItem__cost-sale {
    display: inline;
    font-size: 20px;
    color: #a5a5a5;
    text-decoration: line-through;
}

.productUsualItem__cost-sale span {
    font-size: 20px;
    color: #a5a5a5;
}

.productUsualItem__incart {
    margin-bottom: 8px;
    font-size: 14px;
}

.productUsualItem-cart {
    margin-bottom: 8px;
    display: none;
}

.productUsualItem__buy {
    color: #1018b7;
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.productUsualItem__buy:hover {
    border-bottom: 1px solid #1018b7;
}

.productUsualItem__buy:active {
    color: #393939;
    border-bottom: 1px solid #393939;
}

.productUsualItem-cart {
    background: #393939;
    min-height: 43px;
    padding: 13px 24px;
    border-radius: 5px;
}

.productUsualItem-cart span {
    color: #fff;
}

.productUsualItem-descr {
    padding-top: 16px;
    border-top: 1px solid #dfdfdf;
}

.productUsualItem-descr-comment {
    margin-bottom: 16px;
}

.productUsualItem-descr-comment ul {
    margin-right: 16px;
}

.productUsualItem-descr-comment ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.productUsualItem-descr-comment ul li:not(:last-child) {
    margin-right: 4px;
}

.productUsualItem-descr-comment ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.productUsualItem-descr-comment ul li.active svg path {
    fill: #f4c713;
}

.productUsualItem-descr-comment p {
    color: #1018b7;
    font-size: 14px;
}

.productUsualItem-descr-comment p span {
    color: #1018b7;
    font-size: 14px;
}

.productUsualItem-descr-char {
    margin-bottom: 16px;
}

.productUsualItem-descr-char li:not(:last-child) {
    margin-bottom: 8px;
}

.productUsualItem-descr-char li p {
    font-size: 14px;
    color: #4c4c4c;
}

.productUsualItem-descr-char li p span {
    font-size: 14px;
    font-family: "Inter Medium";
    color: #4c4c4c;
}

.productUsualItem:hover .productUsualItem__image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.page-wrapper& gt

;
span {
    color: #4c4c4c;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 8px;
}

.page__btn {
    border: 1px solid #f1f1f1;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.page__btn-arrow {
    background: #f1f1f1;
}

.page__btn span {
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 14px;
}

.page__btn svg path {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.page__btn:hover {
    background: #f1f1f1;
}

.page__btn:hover span {
    color: #4c4c4c;
}

.page__btn:hover svg path {
    fill: #f4c713;
}

.page__btn:active span {
    color: #1f1f1f;
}

.page__btn:active svg path {
    fill: #1018b7;
}

.page__btn.active {
    background: #f1f1f1;
}

.page__btn:not(:last-child) {
    margin-right: 8px;
}

.page-more {
    background: #f4f4f4;
    color: #4c4c4c;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.breadcrumbs {
    margin-top: 14px;
}

.breadcrumbs-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.breadcrumbs-list li {
    position: relative;
}

.breadcrumbs-list li a span {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: rgba(165, 165, 165, 0.5);
}

.breadcrumbs-list li:not(:first-child)::before {
    content: "/";
    margin: 0 6px;
    color: rgba(165, 165, 165, 0.5);
}

.breadcrumbs-list li:not(:last-child):hover span {
    color: #a5a5a5;
}

.select {
    position: relative;
}

.select-title {
    cursor: pointer;
}

.select-title p {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.select-title .arrow {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.select-inner {
    width: 100%;
    position: absolute;
    left: 0;
    top: 65px;
    z-index: 2;
    display: none;
}

.select-list {
    max-height: 260px;
    overflow: auto;
}

.select-list::-webkit-scrollbar {
    width: 4px;
}

.select-list::-webkit-scrollbar-track {
    background: #939393;
    border-radius: 100px;
}

.select-list::-webkit-scrollbar-thumb {
    background: #0693e2;
    border-radius: 100px;
}

.select.active .select-inner {
    display: block;
}

.select.active .select-title .arrow {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.select-item {
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.select-item svg {
    display: none;
}

.checkbox {
    margin-top: 8px;
    position: relative;
    cursor: pointer;
}

.checkbox input {
    display: none;
}

.checkbox span {
    width: 16px;
    height: 16px;
    position: relative;
    margin-right: 10px;
    border: 1px solid #1f1f1f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.checkbox span svg {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
}

.checkbox input:checked ~ span {
    background: #1f1f1f;
}

.checkbox input:checked ~ span svg {
    opacity: 1;
}

.checkbox__text {
    width: calc(100% - 28px);
    color: #4c4c4c;
    font-size: 12px;
}

.checkbox__text a {
    color: #4c4c4c;
    font-size: 12px;
    text-decoration: underline;
}

/*
    sign-in.html
    log-in.html
    relog-in.html
    cabinet-edit.html
    cabinet.html
    recall.html
    index.html
    contacts.html
    blog.html
    404.html
    catalog-category.html
    article-1.html
    article-2.html
    article-3.html
    blogPage.html
    catalog.html
    cart.html
    cart-noProduct.html
*/
a,
span,
p,
input,
button,
select,
option,
textarea,
label,
blockquote {
    font-family: "Inter Regular";
    font-size: 16px;
    line-height: normal;
    color: #1f1f1f;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: normal;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #a5a5a5;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #a5a5a5;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    color: #a5a5a5;
}

input::placeholder,
textarea::placeholder {
    color: #a5a5a5;
}

body {
    background: #fcfcfc;
}

textarea {
    height: 100%;
}

label.error {
    font-family: "Inter Regular";
    font-size: 14px;
    color: #c62828;
    margin-top: 3px;
    display: inline-block;
}

b {
    font-family: "Inter SemiBold";
}

input {
    border: none;
    background: #f4f4f4;
    padding: 14px 16px;
    font-size: 14px;
    width: 100%;
    border-radius: 5px;
}

.container {
    padding: 0 20px;
    width: 1210px;
    margin: 0 auto;
}

.bottomPanel {
    display: none;
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 30;
    background: #fff;
    -webkit-backdrop-filter: blur(10.8px);
    backdrop-filter: blur(10.8px);
    -webkit-box-shadow: 0px -5px 36px 0px #7e7e7e1c;
    box-shadow: 0px -5px 36px 0px #7e7e7e1c;
}

.bottomPanel-list {
    padding: 8px 10px;
}

.bottomPanel-item {
    width: 56px;
}

.bottomPanel-item__link {
    width: 100%;
}

.bottomPanel-item__link svg {
    width: 20px;
    height: 20px;
}

.bottomPanel-item__link span {
    margin-top: 5px;
    font-size: 12px;
    color: #4c4c4c;
}

#panel .header {
    top: 39px;
}

.header {
    position: fixed;
    left: 0;
    background: #fff;
    top: 0;
    width: 100%;
    z-index: 20;
}

.header-burger {
    width: 32px;
    height: 22px;
    z-index: 10;
    display: none;
    position: relative;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
}

.header-burger span {
    position: absolute;
    height: 3px;
    border-radius: 3px;
    -webkit-transition: all ease-in 0.2s;
    transition: all ease-in 0.2s;
}

.header-burger span:nth-child(1) {
    top: 0;
    -webkit-transition: all ease-in 0.2s;
    transition: all ease-in 0.2s;
    background: #1f1f1f;
    width: 100%;
    left: 0;
}

.header-burger span:nth-child(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 1;
    -webkit-transition: all ease-in 0.2s;
    transition: all ease-in 0.2s;
    background: #1f1f1f;
    width: 100%;
    right: 0;
}

.header-burger span:nth-child(3) {
    bottom: 0;
    -webkit-transition: all ease-in 0.2s;
    transition: all ease-in 0.2s;
    background: #1f1f1f;
    width: 100%;
    right: 0;
}

.header-burger.open span {
    -webkit-transition: all ease-in 0.2s;
    transition: all ease-in 0.2s;
}

.header-burger.open span:nth-child(1) {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

.header-burger.open span:nth-child(2) {
    opacity: 0;
}

.header-burger.open span:nth-child(3) {
    top: 50%;
    width: 100%;
    background: #000;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
}

.header.scroll,
.header.headerVis {
    top: 0;
    background: #fff;
}

.header.scroll .header-wrapper,
.header.headerVis .header-wrapper {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    position: relative;
}

.header.scroll .header-block,
.header.headerVis .header-block {
    margin-left: auto;
}

.header.scroll .header__logo,
.header.headerVis .header__logo {
    width: 46px;
    margin-right: 42px;
}

.header.scroll .header__logo .desktop,
.header.headerVis .header__logo .desktop {
    display: none;
}

.header.scroll .header__logo .mobile,
.header.headerVis .header__logo .mobile {
    display: block;
}

.header.scroll .header-nav,
.header.headerVis .header-nav {
    background: unset;
    padding: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.header.scroll .header-catalog,
.header.headerVis .header-catalog {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: 24px;
    position: static;
}

.header.scroll .header-catalog-tabs,
.header.headerVis .header-catalog-tabs {
    border-radius: 0;
    padding: 24px;
}

.header.scroll .header-catalog-tabs__btn,
.header.headerVis .header-catalog-tabs__btn {
    border-radius: 5px;
    background: #f4f4f4;
}

.header.scroll .header-catalog-tabs__btn.active,
.header.headerVis .header-catalog-tabs__btn.active {
    background: #f4c713;
}

.header.scroll .header-catalog-tabs__btn:not(:last-child),
.header.headerVis .header-catalog-tabs__btn:not(:last-child) {
    margin-right: 8px;
}

.header.scroll .header-catalog-block,
.header.headerVis .header-catalog-block {
    padding: 24px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.header.scroll .header-catalog-item,
.header.headerVis .header-catalog-item {
    display: inline-block;
    width: 352px;
}

.header.scroll .header-catalog-item:not(:first-child),
.header.headerVis .header-catalog-item:not(:first-child) {
    margin-top: 0;
}

.header.scroll .header-catalog-item:not(:nth-child(-n + 3)),
.header.headerVis .header-catalog-item:not(:nth-child(-n + 3)) {
    margin-top: 30px;
}

.header.scroll .header-catalog-item:not(:nth-child(3n + 3)),
.header.headerVis .header-catalog-item:not(:nth-child(3n + 3)) {
    margin-right: 30px;
}

.header.scroll .header-catalog-inner,
.header.headerVis .header-catalog-inner {
    display: none;
    background: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    top: 58px;
    width: 100%;
}

.header.scroll .header-catalog-inner:hover,
.header.headerVis .header-catalog-inner:hover {
    display: block;
}

.header.scroll .header-catalog__button,
.header.headerVis .header-catalog__button {
    padding: 15px 0;
    display: block;
    background: transparent;
    padding: 0;
}

.header.scroll .header-catalog__button-arrow,
.header.headerVis .header-catalog__button-arrow {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: unset;
    height: unset;
    background: transparent;
    margin-right: 0;
    margin-left: 8px;
}

.header.scroll .header-catalog__button-arrow svg path,
.header.headerVis .header-catalog__button-arrow svg path {
    fill: #f4c713;
}

.header.scroll .header-catalog__button:hover + .header-catalog-inner,
.header.headerVis .header-catalog__button:hover + .header-catalog-inner {
    display: block;
}

.header.scroll .header-catalog.stock .header-catalog__button,
.header.headerVis .header-catalog.stock .header-catalog__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 15px 0;
}

.header.scroll .header-catalog.stock .header-catalog-inner,
.header.headerVis .header-catalog.stock .header-catalog-inner {
    top: 58px;
}

.header.scroll .header-catalog.fixed .header-catalog__button,
.header.headerVis .header-catalog.fixed .header-catalog__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 15px 0;
}

.header.scroll .header-catalog.fixed .header-catalog-inner,
.header.headerVis .header-catalog.fixed .header-catalog-inner {
    top: 58px;
}

.header.scroll .header-item:not(:last-child),
.header.headerVis .header-item:not(:last-child) {
    margin-right: 24px;
}

.header.scroll .header-item__link,
.header.headerVis .header-item__link {
    padding: 15px 0;
}

.header.scroll .header-search,
.header.headerVis .header-search {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: 8px;
}

.header.scroll .header-search-mobile,
.header.headerVis .header-search-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header.scroll .header-search-form,
.header.headerVis .header-search-form {
    display: none;
}

.header.scroll .header-search .close,
.header.headerVis .header-search .close {
    display: none;
}

.header.scroll .header-search .icon,
.header.headerVis .header-search .icon {
    display: block;
}

.header.scroll .header-search.open .header-search-form,
.header.headerVis .header-search.open .header-search-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 74px;
    width: 100%;
    left: 0;
    z-index: 100;
}

.header.scroll .header-search.open .header-search-form::before,
.header.headerVis .header-search.open .header-search-form::before {
    content: "";
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
    height: calc(100% - 68px);
}

.header.scroll .header-search.open .close,
.header.headerVis .header-search.open .close {
    display: block;
}

.header.scroll .header-search.open .icon,
.header.headerVis .header-search.open .icon {
    display: none;
}

.header.scroll .header-contact,
.header.headerVis .header-contact {
    margin-right: 43px;
}

.header.scroll .header-contact-inner,
.header.headerVis .header-contact-inner {
    display: none;
}

.header.scroll .header-contact-mobile,
.header.headerVis .header-contact-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header.scroll .header-contact .close,
.header.headerVis .header-contact .close {
    display: none;
}

.header.scroll .header-contact .icon,
.header.headerVis .header-contact .icon {
    display: block;
}

.header.scroll .header-contact.open,
.header.headerVis .header-contact.open {
    position: relative;
}

.header.scroll .header-contact.open .close,
.header.headerVis .header-contact.open .close {
    display: block;
}

.header.scroll .header-contact.open .icon,
.header.headerVis .header-contact.open .icon {
    display: none;
}

.header.scroll .header-contact.open .header-contact__title,
.header.headerVis .header-contact.open .header-contact__title {
    display: block;
    margin-bottom: 16px;
    font-family: "Inter SemiBold";
}

.header.scroll .header-contact.open .header-contact-inner,
.header.headerVis .header-contact.open .header-contact-inner {
    display: block;
    position: absolute;
    top: 58px;
    right: 0;
    padding: 32px;
    background: #fff;
    border-radius: 5px;
}

.header.scroll .header-contact.open .header-contact-inner::before,
.header.headerVis .header-contact.open .header-contact-inner::before {
    content: "";
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.header.scroll .header-contact.open .header-contact-info,
.header.headerVis .header-contact.open .header-contact-info {
    margin-right: 0;
    margin-bottom: 16px;
}

.header.scroll .header-menu,
.header.headerVis .header-menu {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 0;
}

.header.scroll .header__logo,
.header.headerVis .header__logo {
    -webkit-box-ordinal-group: -1;
    -ms-flex-order: -2;
    order: -2;
}

.header-wrapper {
    padding: 10px 0;
}

.header__logo {
    width: 215px;
    height: 46px;
}

.header__logo .mobile {
    display: none;
}

.header-search {
    margin-right: 20px;
    width: 430px;
}

.header-search-form {
    padding: 10px 20px;
    background: #f4f4f4;
    border-radius: 5px;
}

.header-search-form__input {
    padding: 0;
    padding-right: 15px;
    font-size: 16px;
}

.header-search-form__input::-webkit-input-placeholder {
    color: #a5a5a5;
}

.header-search-form__input:-ms-input-placeholder {
    color: #a5a5a5;
}

.header-search-form__input::-ms-input-placeholder {
    color: #a5a5a5;
}

.header-search-form__input::placeholder {
    color: #a5a5a5;
}

.header-search-form__button {
    width: 32px;
    height: 32px;
    border-radius: 5px;
    background: #f4c713;
}

.header-search-mobile {
    width: 32px;
    height: 32px;
    border-radius: 5px;
    background: #f4c713;
    display: none;
}

.header-contact {
    margin-right: 20px;
}

.header-contact__title {
    display: none;
}

.header-contact__number {
    color: #1018b7;
    font-family: "Inter SemiBold";
    margin-bottom: 4px;
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.header-contact__number:hover {
    border-bottom: 1px solid #1018b7;
}

.header-contact__number:active {
    color: #393939;
    border-bottom: 1px solid #393939;
}

.header-contact__work {
    font-size: 12px;
    color: #a5a5a5;
}

.header-contact-info {
    margin-right: 20px;
}

.header-contact__button {
    width: unset;
}

.header-contact-mobile {
    width: 32px;
    height: 32px;
    border-radius: 5px;
    background: #f4c713;
    display: none;
}

.header__cabinet {
    width: 48px;
    height: 48px;
}

.header__cart {
    position: relative;
    width: 48px;
    height: 48px;
}

.header__cart span {
    font-family: "Inter SemiBold";
    background: #f4c713;
    border-radius: 50px;
    top: -4px;
    right: -4px;
    position: absolute;
    padding: 3px 7px;
    font-size: 10px;
}

.header-menu {
    margin-top: 20px;
    width: 100%;
}

.header-catalog {
    width: 280px;
    position: relative;
}

.header-catalog.stock .header-catalog-inner {
    top: 0;
}

.header-catalog.stock .header-catalog-block {
    max-height: 467px;
}

.header-catalog.stock .header-catalog-tabs__btn {
    padding: 11px 16px;
}

.header-catalog.stock .header-catalog__button {
    display: none;
}

.header-catalog.fixed .header-catalog-inner {
    top: 60px;
    display: none;
}

.header-catalog.fixed .header-catalog-block {
    max-height: 467px;
}

.header-catalog.fixed .header-catalog-tabs__btn {
    padding: 11px 16px;
}

.header-catalog.fixed.open .header-catalog-inner {
    display: block;
}

.header-catalog.fixed.open .header-catalog__button-arrow svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.header-catalog-inner {
    background: #f4f4f4;
    border-radius: 8px;
    position: absolute;
    left: 0;
    top: 64px;
    z-index: 5;
}

.header-catalog-tabs {
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(57, 57, 57, 0.05);
}

.header-catalog-tabs__btn {
    padding: 5px 16px;
    font-size: 12px;
    color: #4c4c4c;
    text-align: left;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header-catalog-tabs__btn.active {
    background: #f4c713;
    color: #1f1f1f;
    font-family: "Inter Medium";
}

.header-catalog-tabs__btn:hover {
    background: #f4c713;
    color: #1f1f1f;
    font-family: "Inter Medium";
}

.header-catalog__button {
    border-radius: 8px;
    width: 100%;
    background: #f4f4f4;
    padding: 10px;
}

.header-catalog__button span {
    font-size: 14px;
}

.header-catalog__button-arrow {
    width: 32px;
    height: 32px;
    background: #f4c713;
    border-radius: 5px;
    margin-right: 16px;
}

.header-catalog__button-arrow svg {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header-catalog-block {
    display: none;
    padding: 16px;
    max-height: 415px;
    overflow-y: scroll;
}

.header-catalog-block::-webkit-scrollbar {
    width: 5px;
}

.header-catalog-block::-webkit-scrollbar-thumb {
    background: rgba(76, 76, 76, 0.5);
}

.header-catalog-block.show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.header-catalog-item:not(:first-child) {
    margin-top: 16px;
}

.header-catalog-item {
    background: none !important;
}

.header-catalog-item-head {
    cursor: pointer;
    justify-content: space-between;
    background: none !important;
}

.header-catalog-item-head::before,
.header-catalog-item-head::after {
    content: none !important;
    display: none !important;
}

.header-catalog-item-head__title {
    max-width: calc(100% - 18px);
    font-family: "Inter Medium";
    font-size: 14px;
    line-height: 1.4;
    /* Improve line spacing */
    font-weight: 500;
    /* Ensure consistent weight */
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: none !important;
    /* Ensure no background on text */
}

.header-catalog-item-head:hover .header-catalog-item-head__title {
    color: #1018b7;
}

.header-catalog-item-head:hover svg path {
    fill: #1018b7;
}

.header-catalog-item-head svg {
    margin-left: 8px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header-catalog-item-head svg path {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header-catalog-item-head.open svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.header-catalog-item-list {
    padding: 0;
    margin: 0;
}

.header-catalog-item-line:not(:last-child) {
    margin-bottom: 12px;
    /* Increased spacing */
}

.header-catalog-item__link {
    font-size: 12px !important;
    color: #4c4c4c;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: block;
    text-align: left;
    padding-left: 15px;
    font-weight: 400 !important;
    font-family: "Inter Regular", sans-serif;
    line-height: 1.5;
    /* Improve readability */
}

.header-catalog-item__img {
    display: none;
}

.header-catalog-item__img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.header-catalog-item__link:hover {
    color: #1018b7;
}

.header-catalog-link {
    background: #f4c713;
    padding: 10px 16px;
    border-radius: 0 0 5px 5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header-catalog-link p {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header-catalog-link:hover {
    background: #1f1f1f;
}

.header-catalog-link:hover p {
    color: #f4c713;
}

.header-catalog-link:hover svg path {
    fill: #f4c713;
}

.header-catalog-link:active {
    color: #f4c713;
    background: #393939;
}

.header-catalog-link:active svg path {
    fill: #f4c713;
}

.header-nav {
    width: 870px;
    background: #f4f4f4;
    padding: 17px 24px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 8px;
}

.header-item:not(:last-child) {
    margin-right: 38px;
}

.header-item a {
    display: inline-block;
    font-size: 14px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header-item a:hover {
    color: #1018b7;
}

.blockLeft {
    width: 280px;
}

.blockRight {
    width: 870px;
}

.intro-wrapper {
    width: 870px;
    margin-left: auto;
}

.intro-inner {
    height: 498px;
}

.intro-slider-main {
    width: 575px;
    height: 100%;
    margin: 0;
    border-radius: 8px;
}

.intro-slider-main-item {
    position: relative;
}

.intro-slider-main-item-image {
    width: 100%;
    height: 100%;
}

.intro-slider-main-item-left {
    width: 325px;
}

.intro-slider-main-item-info {
    padding: 24px;
    position: absolute;
    left: 0;
    z-index: 1;
    bottom: 0;
    overflow: hidden;
    width: 100%;
    min-height: 125px;
    background: rgba(31, 31, 31, 0.6);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.intro-slider-main-item__title {
    color: #fff;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 1;
}

.intro-slider-main-item__descr {
    margin-top: 8px;
    color: #fff;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
}

.intro-slider-main-item__button {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    max-width: 105px;
}

.intro-slider-main-pagination {
    position: absolute;
    bottom: 24px !important;
    right: 24px;
    left: unset !important;
    z-index: 2;
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

.intro-slider-main-pagination span {
    background: #5b5b5b;
}

.intro-slider-main-pagination span.swiper-pagination-bullet-active {
    background: #f4c713;
}

.intro-slider-dop {
    width: 278px;
    height: 100%;
    margin: 0;
    border-radius: 8px;
}

.intro-slider-dop-item {
    position: relative;
}

.intro-slider-dop-item-image {
    width: 100%;
    height: 100%;
}

.intro-slider-dop-item-info {
    padding: 24px;
    position: absolute;
    left: 0;
    z-index: 1;
    bottom: 0;
    overflow: hidden;
    width: 100%;
    min-height: 125px;
    background: rgba(31, 31, 31, 0.6);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.intro-slider-dop-item-info-content {
    position: relative;
    z-index: 2;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.intro-slider-dop-item-left {
    width: calc(100% - 45px);
}

.intro-slider-dop-item__title {
    color: #fff;
    font-size: 16px;
    font-family: "Inter SemiBold";
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
}

.intro-slider-dop-item__button {
    width: 30px;
    height: 20px;
    padding: 0;
    margin-left: auto;
    margin-top: auto;
}

.intro-slider-dop-item__button svg {
    position: relative;
    top: -1px;
}

@media screen and (max-width: 992px) {
    .intro-slider-dop-item__button svg {
        top: 5px !important;
    }
}

.intro-slider-dop-pagination {
    position: absolute;
    bottom: 24px !important;
    left: 24px !important;
    z-index: 6;
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

.intro-slider-dop-pagination span {
    background: #5b5b5b;
}

.intro-slider-dop-pagination span.swiper-pagination-bullet-active {
    background: #f4c713;
}

.catalog__title {
    margin: 24px 0;
}

.catalog-item {
    width: calc(33% - 16px);
    -webkit-box-shadow: 0 7px 42px 0 rgba(227, 227, 227, 0.23);
    box-shadow: 0 7px 42px 0 rgba(227, 227, 227, 0.23);
}

.catalog-list {
    gap: 20px;
    margin-bottom: 40px;
}

.catalog-item__price {
    height: 31px;
    display: inline-flex;
    max-width: max-content;
    box-sizing: border-box;
    padding: 8px;
    background: #1F1F1F;
    border-radius: 5px;
    color: #fff;
    margin-top: 16px;
    font-weight: 600;
    font-size: 12px;
    color: #fff9f9;
}

.catalog-item-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.catalog-item-link {
    padding: 16px;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.catalog-item-image {
    height: 171px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 16px;
}

.catalog-item-image img {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.catalog-item__title {
    font-family: "Inter SemiBold";
}

.catalog-item:hover .catalog-item-image img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.catalog-links {
    margin-top: 24px;
}

.catalog-links-item {
    margin-bottom: 8px;
}

.catalog-links-item__link {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #4c4c4c;
    display: inline-block;
    font-size: 12px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.catalog-links-item__link svg {
    margin-left: 8px;
}

.catalog-links-item__link:hover {
    background: #1f1f1f;
    border: 1px solid #1f1f1f;
    color: #f4c713;
}

.catalog-links-item__link:active {
    background: #393939;
}

.catalog-links-item.trigger .catalog-links-item__link {
    border: none;
    background: #dfdfdf;
    border: 1px solid #dfdfdf;
}

.catalog-links-item:not(:last-child) {
    margin-right: 8px;
}

.catalog-list-category .catalog-item {
    width: 158px;
}

.catalog-list-category .catalog-item:not(:nth-child(4n + 4)) {
    margin-right: 0;
}

.catalog-list-category .catalog-item:not(:nth-child(-n + 4)) {
    margin-top: 0;
}

.catalog-list-category .catalog-item:not(:nth-child(5n + 5)) {
    margin-right: 20px;
}

.catalog-list-category .catalog-item:not(:nth-child(-n + 5)) {
    margin-top: 20px;
}

.catalog-list-category .catalog-item-image {
    height: 94px;
}

.catalog-list-category .catalog-item__title {
    font-size: 14px;
}

.catalog-filterBlock,
.catalog-filterBlock__content-filter {
    display: none;
}

.catalog-filterBlock__btn-main {
    padding: 10px 24px;
    border-radius: 5px;
    background: #f4f4f4;
}

.catalog-filterBlock__btn-main svg {
    margin-right: 8px;
}

.catalog-filterBlock__btn-main span {
    margin-left: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4c4c4c;
    color: #fff;
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.catalog-products-filter {
    margin-bottom: 24px;
}

.catalog-products-list {
    display: none;
}

.catalog-products-list.show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.catalog-products-list .productUsualItem {
    width: calc(25% - 15px);
    display: flex;
    flex-direction: column;
}

.productUsualItem-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.productUsualItem__actions {
    display: flex;
    align-items: center;
}

.catalog-products-list .productUsualItem__image {
    height: 202px;
    margin-bottom: 16px;
}

.catalog-products-main {
    margin-bottom: 32px;
}

.catalog-products-main-count {
    font-size: 14px;
}

.catalog-products-main-count span {
    font-size: 14px;
}

.catalog-products-main-sort__title {
    margin-right: 8px;
    font-size: 14px;
}

.catalog-products-main-sort form .select-inner {
    background: #ffffff;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    top: 30px;
    border-radius: 5px;
}

.catalog-products-main-sort form .select-list {
    padding: 8px 0;
}

.catalog-products-main-sort form .select-item a {
    padding: 8px 16px;
    display: inline-block;
    color: #4c4c4c;
    font-size: 14px;
    width: 100%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.catalog-products-main-sort form .select-item a:hover {
    background: #f4f4f4;
}

.catalog-products-main-sort form .select-item a:active {
    background: #f1f1f1;
    color: #1f1f1f;
}

.catalog-products-main-sort form .select.active .select-title p {
    color: #1018b7;
    font-family: "Inter SemiBold";
}

.catalog-products-main-sort form .select.active .select-title svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.catalog-products-main-sort form .select-title p {
    font-size: 14px;
}

.catalog-products-main-sort form .select-title svg {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-left: 8px;
}

.catalog-products-main-view {
    margin-left: 24px;
}

.catalog-products-main-view a {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.catalog-products-main-view a:not(:last-child) {
    margin-right: 8px;
}

.catalog-products-main-view a svg rect {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.catalog-products-main-view a.active svg rect {
    fill: #393939;
}

.catalog-products-main-view a:hover svg rect {
    fill: #393939;
}

.catalog-products-list-line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.catalog-products-item {
    background: #ffffff;
    border-radius: 5px;
    overflow: hidden;
}

.catalog-products-item:not(:last-child) {
    margin-bottom: 8px;
}

.catalog-products-item-image {
    position: relative;
    width: 132px;
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
}

.catalog-products-item-image__label {
    color: #fff9f9;
    padding: 8px;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 12px;
    font-family: "Inter SemiBold";
    z-index: 5;
}

.catalog-products-item-image__label.orange {
    background: #fda539;
}

.catalog-products-item-image__label.green {
    background: #3ec75e;
}

.catalog-products-item-image__label.red {
    background: #ee4141;
}

.catalog-products-item-info {
    width: 430px;
    width: calc(100% - 132px);
    padding: 14px 24px;
}

.catalog-products-item-info-head {
    margin-bottom: 8px;
}

.catalog-products-item-link {
    width: calc(100% - 210px);
}

.catalog-products-item__article {
    color: #a5a5a5;
    font-size: 14px;
    margin-right: 16px;
}

.catalog-products-item__status {
    font-family: "Inter Medium";
    font-size: 14px;
    display: inline-block;
}

.catalog-products-item__status.gray {
    color: #a5a5a5;
}

.catalog-products-item__status.green {
    color: #3ec75e;
}

.catalog-products-item__status.red {
    background: #ee4141;
}

.catalog-products-item-cart {
    padding: 14px 24px 14px 0;
}

.catalog-products-item__incart {
    font-size: 14px;
    margin-bottom: 16px;
}

.catalog-products-item__incart span {
    font-size: 14px;
}

.catalog-products-item__buy {
    color: #1018b7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-bottom: 1px solid transparent;
}

.catalog-products-item__buy:hover {
    border-bottom: 1px solid #1018b7;
}

.catalog-products-item__buy:active {
    color: #393939;
    border-bottom: 1px solid #393939;
}

.catalog-products-item__title {
    margin-bottom: auto;
    font-family: "Inter Medium";
}

.catalog-products-item__cost {
    margin-top: 12px;
}

.catalog-products-item__cost-main {
    margin-right: 8px;
}

.catalog-products-item__cost-sale {
    color: #a5a5a5;
    text-decoration: line-through;
    font-size: 20px;
}

.catalog-products-item__cost-sale span {
    color: #a5a5a5;
    font-size: 20px;
}

.catalog-description h3 {
    margin-bottom: 30px;
}

.catalog-description p {
    margin-bottom: 20px;
}

.catalog-description-content h4 {
    margin-bottom: 16px;
    font-size: 20px;
    font-family: "Inter SemiBold";
}

.catalog-description-content p {
    margin-bottom: 24px;
}

.catalog-description-content h5 {
    font-size: 18px;
    font-family: "Inter SemiBold";
    margin-bottom: 16px;
}

.catalog-description-content b {
    font-family: "Inter SemiBold";
}

.catalog-description-content ul {
    margin: 16px 0;
}

.catalog-description-content ul li {
    font-size: 16px;
    font-family: "Inter Regular";
}

.catalog-description-content ul li::before {
    content: "•";
}

.catalog-description-content ol {
    padding-left: 20px;
    margin: 16px 0;
}

.catalog-description-content ol li {
    font-size: 16px;
    font-family: "Inter Regular";
    display: list-item;
}

.catalog-description-content a {
    color: #1018b7;
}

.catalog-description-content a:hover {
    text-decoration: underline;
}

.catalog-description-content table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    margin-bottom: 30px;
}

.catalog-description-content table tr {
    border: 1px solid #dfdfdf;
}

.catalog-description-content table tr td {
    font-size: 16px;
    padding: 15px 25px;
    font-family: "Inter Regular";
}

.catalog-description-content table tr td:not(:last-child) {
    border-right: 1px solid #dfdfdf;
}

.catalog-description-content table thead tr td {
    background: #f4f4f4;
    font-family: "Inter Medium";
}

.catalog-description-content img {
    width: 100%;
    border-radius: 5px;
}

.filter {
    background: #f4f4f4;
    padding: 16px 16px 24px 16px;
    margin-top: 14px;
    border-radius: 5px;
}

.filter__go {
    display: none;
}

.filter__title {
    font-family: "Inter SemiBold";
    font-size: 16px;
}

.filter__clear {
    padding: 5px 8px;
    font-size: 12px;
    color: #4c4c4c;
    border-radius: 5px;
    background: #dfdfdf;
}

.filter__clear svg {
    margin-left: 8px;
}

.filter-main {
    margin-bottom: 24px;
}

.filter-block:not(:last-child) {
    margin-bottom: 16px;
}

.filter-block-head {
    cursor: pointer;
}

.filter-block-head.open svg {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.filter-block-head:hover .filter-block-head__title {
    color: #1018b7;
}

.filter-block-head:hover svg path {
    fill: #1018b7;
}

.filter-block-head__title {
    font-size: 14px;
    font-family: "Inter Medium";
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.filter-block-head svg {
    margin-left: 8px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.filter-block-head svg path {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.filter-block-item {
    width: 100%;
}

.filter-block-item__text {
    font-size: 14px;
}

.filter-block-item-label {
    width: 100%;
}

.filter-price {
    margin-top: 16px;
}

.filter-price-inner {
    height: 4px;
    border-radius: 20px;
    position: relative;
    background: #dfdfdf;
}

.filter-price-inner .noUi-base {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.filter-price-inner .noUi-handle {
    position: absolute;
    width: 14px;
    height: 14px;
    top: -9px;
    border-radius: 50%;
    background: #1f1f1f;
    cursor: pointer;
    right: -7px;
    z-index: 2;
}

.filter-price-inner .noUi-connects {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.filter-price-inner .noUi-connect {
    background: #000;
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform-style: flat;
    transform-style: flat;
    will-change: transform;
}

.filter-price-values {
    margin-top: 15px;
}

.filter-price-values input {
    border: 1px solid #dfdfdf;
    padding: 8px 12px;
    width: 48%;
    border-radius: 5px;
}

.filter__more {
    color: #1018b7;
}

.blockProduct .swiper-wrapper {
    height: auto !important;
}

.blockProduct-panel button {
    background: #f1f1f1;
    width: 40px;
    height: 40px;
    border-radius: 5px;
}

.blockProduct-panel button:not(:last-child) {
    margin-right: 5px;
}

.blockProduct-panel button svg path {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.blockProduct-panel button:hover svg path {
    fill: #f4c713;
}

.blockProduct-panel button:active svg path {
    fill: #1018b7;
}

.blockProduct__link svg {
    margin-left: 16px;
}

.blockProductDop-panel button {
    background: #f1f1f1;
    width: 40px;
    height: 40px;
    border-radius: 5px;
}

.blockProductDop-panel button:not(:last-child) {
    margin-right: 5px;
}

.blockProductDop-panel button svg path {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.blockProductDop-panel button:hover svg path {
    fill: #f4c713;
}

.blockProductDop-panel button:active svg path {
    fill: #1018b7;
}

.blockProductDop .productUsualItem__image {
    height: 218px;
}

.blockProductConstr-panel button {
    background: #f1f1f1;
    width: 40px;
    height: 40px;
    border-radius: 5px;
}

.blockProductConstr-panel button:not(:last-child) {
    margin-right: 5px;
}

.blockProductConstr-panel button svg path {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.blockProductConstr-panel button:hover svg path {
    fill: #f4c713;
}

.blockProductConstr-panel button:active svg path {
    fill: #1018b7;
}

.blockProductConstr .productUsualItem__incart {
    padding: 13px 14px;
    margin-bottom: 0;
}

.popular-item {
    min-height: 288px;
    padding: 32px;
    background: #ffffff;
    width: 674px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.popular-item__image {
    width: 200px;
    height: 200px;
    position: absolute;
    right: 40px;
    top: 20px;
}

.popular-item__image img {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.popular-item:nth-child(4n + 2),
.popular-item:nth-child(4n + 3) {
    width: 478px;
}

.popular-item:not(:nth-child(-n + 2)) {
    margin-top: 18px;
}

.popular-item-link {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.popular-item-block {
    position: relative;
    z-index: 5;
}

.popular-item__name {
    margin-right: 16px;
    font-size: 20px;
    font-family: "Inter SemiBold";
}

.popular-item__btn {
    padding: 0;
    width: 40px;
    height: 24px;
}

.popular-item:hover .popular-item__image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.articleOther-panel button {
    background: #f1f1f1;
    width: 40px;
    height: 40px;
    border-radius: 5px;
}

.articleOther-panel button:not(:last-child) {
    margin-right: 5px;
}

.articleOther-panel button svg path {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.articleOther-panel button:hover svg path {
    fill: #f4c713;
}

.articleOther-item {
    width: 278px;
    height: auto;
    background: #fff;
    padding: 24px;
    border-radius: 5px;
}

.articleOther-item-block {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.articleOther-item-link {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
}

.articleOther-item__image {
    width: 100%;
    height: 157px;
    margin-bottom: 16px;
}

.articleOther-item__image img {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.articleOther-item__name {
    font-family: "Inter SemiBold";
    width: calc(100% - 48px);
}

.articleOther-item__btn {
    padding: 0;
    width: 40px;
    height: 24px;
}

.articleOther-item:hover .articleOther-item__image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.recall-panel button {
    background: #f1f1f1;
    width: 40px;
    height: 40px;
    border-radius: 5px;
}

.recall-panel button:not(:last-child) {
    margin-right: 5px;
}

.recall-panel button svg path {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.recall-panel button:hover svg path {
    fill: #f4c713;
}

.recall-item {
    height: auto;
    padding: 20px;
    width: 379px;
    background: #f4f4f4;
    border-radius: 5px;
}

.recall-item__image {
    width: 68px;
    height: 68px;
    margin-bottom: 16px;
}

.recall-item__company {
    display: inline-block;
    margin-bottom: 8px;
    color: #a5a5a5;
}

.recall-item__name {
    font-family: "Inter SemiBold";
    margin-bottom: 24px;
}

.recall-item__text p {
    color: #4c4c4c;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 9;
}

.recall-item__text span {
    color: #a5a5a5;
    border-bottom: 1px solid #a5a5a5;
    display: none;
    cursor: pointer;
}

.recall-item__text span.show {
    display: inline;
}

.recall-item__text.open p {
    -webkit-line-clamp: unset;
}

.about__descr {
    width: calc(100% - 397px);
}

.about__descr b {
    font-family: "Inter Medium";
}

.about-image {
    width: 377px;
    height: 377px;
    border-radius: 5px;
    overflow: hidden;
}

.footer-height {
    display: none;
}

.footer__logo {
    width: 260px;
    display: block;
    height: 64px;
    margin-bottom: 16px;
}

.footer-bottom {
    background: #e8e8e8;
    padding: 40px 0;
}

.footer-main {
    width: 325px;
}

.footer-main-inner {
    margin-bottom: 24px;
}

.footer-main__descr {
    color: #878787;
    font-size: 14px;
}

.footer__local {
    margin-bottom: 24px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.footer__local p {
    font-size: 14px;
    color: #4c4c4c;
    width: calc(100% - 26px);
}

.footer__phone {
    color: #1018b7;
    font-family: "Inter SemiBold";
    font-size: 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 8px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer__phone:hover {
    border-bottom: 1px solid #1018b7;
}

.footer__phone:active {
    color: #393939;
    border-bottom: 1px solid #393939;
}

.footer__mail {
    color: #1018b7;
    margin-bottom: 8px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer__mail:hover {
    border-bottom: 1px solid #1018b7;
}

.footer__mail:active {
    color: #393939;
    border-bottom: 1px solid #393939;
}

.footer__work {
    color: #4c4c4c;
}

.footer-info {
    margin-bottom: 16px;
}

.footer__recall {
    margin-bottom: 24px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.footer__copywriter {
    font-size: 14px;
    color: #878787;
}

.footer-menu {
    width: 774px;
}

.footer-menu__title {
    font-family: "Inter Medium";
    margin-bottom: 24px;
}

.footer-menu& gt

;
nav {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-menu& gt

;
nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer-menu& gt

;
nav ul li:not(:last-child) {
    margin-right: 30px;
}

.footer-menu& gt

;
nav ul li a {
    font-size: 14px;
    color: rgba(76, 76, 76, 0.7);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.footer-menu& gt

;
nav ul li a:hover {
    color: #1018b7;
}

.footer-menu-inner nav {
    width: 220px;
}

.footer-menu-inner nav ul li a {
    font-size: 14px;
    color: rgba(76, 76, 76, 0.7);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.footer-menu-inner nav ul li a:hover {
    color: #1018b7;
}

.footer-menu-inner nav ul li:not(:last-child) {
    margin-bottom: 8px;
}

.footer-block:nth-child(2) {
    width: 220px;
}

.footer-block:nth-child(3) {
    width: 474px;
}

.rec-info-block.show.wm {
    margin-bottom: 90px;
}


@media (min-width: 768px) {
    .footer-menu.f-jcsb.wrapr ul {
        display: flex;
        column-gap: 20px;
        margin-top: 22px;
    }
}

.about-gallery.pt-100.pb-100.wm .swiper-wrapper {
    height: auto !important;
}


@media (max-width: 768px) {
    .about-gallery.pt-100.pb-100.wm .about-slide-img {
        height: auto !important;
    }

    .about-gallery.pt-100.pb-100.wm .swiper-wrapper {
        height: auto !important;
    }

}

.footer-left__link {
    font-size: 12px;
    color: #878787;
    text-decoration: underline;
    text-underline-offset: 1px;
    text-decoration-thickness: 1px;
}

.footer-right {
    font-size: 12px;
    color: #878787;
    max-width: 774px;
}

.construction-cat-item {
    width: 218px;
    overflow: hidden;
    border-radius: 5px;
}

.construction-cat-item:not(:nth-child(5n + 5)) {
    margin-right: 20px;
}

.construction-cat-item:not(:nth-child(-n + 5)) {
    margin-top: 20px;
}

.construction-cat-item-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 16px;
    background: #ffffff;
}

.construction-cat-item-link:hover .construction-cat-item-image img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.construction-cat-item-image {
    width: 100%;
    height: 100px;
    overflow: hidden;
    margin-bottom: 25px;
}

.construction-cat-item-image img {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.construction-cat-item__title {
    font-size: 14px;
    font-family: "Inter SemiBold";
    margin-bottom: 16px;
}

.construction-cat-item__cost {
    background: #1f1f1f;
    padding: 8px;
    border-radius: 5px;
    font-family: "Inter SemiBold";
    font-size: 12px;
    color: #fff;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.construction-products-list {
    display: none;
}

.construction-products-list.show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.construction-products-list .productUsualItem {
    width: 278px;
}

.construction-products-list .productUsualItem:not(:nth-child(4n + 4)) {
    margin-right: 19px;
}

.construction-products-list .productUsualItem:not(:nth-child(-n + 4)) {
    margin-top: 40px;
}

.construction-products-list .productUsualItem .product-quality button {
    padding: 14px;
}

.construction-products-list .productUsualItem__incart {
    padding: 13px;
    margin-bottom: 0;
}

.construction-products-list .productUsualItem__incart span {
    font-size: 14px;
}

.construction-products-list-line .productUsualItem {
    width: 100%;
    background: #ffffff;
}

.construction-products-list-line .productUsualItem__image {
    height: unset;
    width: 132px;
    margin-bottom: 0;
}

.construction-products-list-line .productUsualItem:not(:nth-child(4n + 4)) {
    margin-right: 0;
}

.construction-products-list-line .productUsualItem:not(:last-child) {
    margin-bottom: 8px;
}

.construction-products-list-line .productUsualItem-line-content {
    padding: 14px 24px;
    width: calc(100% - 132px);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.construction-products-list-line .productUsualItem__link {
    width: calc(100% - 278px);
}

.construction-products-list-line .productUsualItem__cost {
    margin-bottom: 0;
}

.construction-products-list-line .productUsualItem__name {
    margin-bottom: 10px;
}

.construction-products-list-line .productUsualItem-panel {
    padding-right: 24px;
}

.cart-list {
    width: 674px;
}

.cart__message {
    font-family: "Inter SemiBold";
    font-size: 18px;
    margin-bottom: 32px;
}

.cart-item {
    padding: 16px 0;
    border-bottom: 1px solid #dfdfdf;
}

.cart-item__image {
    width: 90px;
    height: 90px;
    border-radius: 5px;
    margin-right: 16px;
}

.cart-item__title {
    font-family: "Inter Medium";
    margin-bottom: 8px;
}

.cart-item__article {
    color: #a5a5a5;
    font-size: 14px;
}

.cart-item-info {
    margin-right: auto;
    width: 185px;
}

.cart-item__cost {
    max-width: 95px;
    font-size: 20px;
    margin: 0 16px;
    font-family: "Inter SemiBold";
}

.cart-item__cost span {
    font-size: 20px;
    font-family: "Inter SemiBold";
}

.cart-item-quality {
    /*border: 1px solid #dfdfdf;*/
    /*background: #f4f4f4;*/
    border-radius: 5px;
}

.cart-item-quality span {
    padding: 0 8px;
}

.cart-item-quality input {
    padding: 0 !important;
}

.cart-item-quality button {
    padding: 18px 16px;
}


.cart-item-quality {
    display: flex;
    align-items: center;
    gap: 5px;
}

.minusBtn, .plusBtn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 6px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 400;
    color: #333;
    border: none;
    transition: 0.2s;
    user-select: none;
}


.minusBtn::before {
    content: "−";
}

.plusBtn::before {
    content: "+";
}

.minusBtn:hover, .plusBtn:hover {
    background: #e0e0e0;
}

.quantityCount {
    width: 50px;
    height: 32px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
}


.quantityCount::-webkit-outer-spin-button,
.quantityCount::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantityCount[type=number] {
    -moz-appearance: textfield;
}

.cart-promo {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: 476px;
    background: #f4f4f4;
    padding: 40px;
    border-radius: 5px;
}

.cart-promo__title {
    margin-bottom: 40px;
    display: none;
}

.cart-promo-form {
    display: none !important;
    margin-bottom: 32px;
}

.cart-promo-form__title {
    color: #4c4c4c;
    font-family: "Inter Medium";
    font-size: 14px;
    margin-bottom: 8px;
}

.cart-promo-form-block {
    border: 1px solid #dfdfdf;
    border-radius: 5px;
    padding: 4px;
}

.cart-promo-form__input {
    padding: 10px 12px;
    width: unset;
}

.cart-promo-itog {
    margin-bottom: 32px;
}

.cart-promo-itog__text {
    font-family: "Inter SemiBold";
    font-size: 20px;
}

.cart-promo-itog__text span {
    color: #a5a5a5;
}

.cart-promo-itog__summ {
    font-family: "Inter SemiBold";
    font-size: 20px;
}

.cart-promo-itog__summ span {
    font-family: "Inter SemiBold";
    font-size: 20px;
}

.cart-promo__link {
    display: none;
    color: #1018b7;
    border: 1px solid transparent;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cart-promo__link:hover {
    border-bottom: 1px solid #1018b7;
}

.cart-promo__link:active {
    border-bottom: 1px solid #393939;
    color: #393939;
}

.cart__link {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 38px;
    padding-right: 38px;
}

.checkout-inner {
    width: 575px;
}

.checkout-cost {
    width: 476px;
    background: #f4f4f4;
    padding: 40px;
    border-radius: 5px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

.checkout-cost__title {
    margin-bottom: 32px;
}

.checkout-cost-list {
    padding-bottom: 24px;
    border-bottom: 1px solid #dfdfdf;
}

.checkout-cost-item:not(:last-child) {
    margin-bottom: 16px;
}

.checkout-cost-item__cost {
    font-family: "Inter SemiBold";
}

.checkout-cost-item__cost span {
    font-family: "Inter SemiBold";
}

.checkout-cost-item__title {
    max-width: 250px;
}

.checkout-cost-promo {
    border-bottom: 1px solid #dfdfdf;
    padding: 24px 0;
}

.checkout-cost-promo__cost {
    font-family: "Inter SemiBold";
}

.checkout-cost-promo__cost span {
    font-family: "Inter SemiBold";
}

.checkout-cost-delivery {
    border-bottom: 1px solid #dfdfdf;
    padding: 24px 0;
}

.checkout-cost-delivery__cost {
    font-family: "Inter SemiBold";
}

.checkout-cost-delivery__cost span {
    font-family: "Inter SemiBold";
}

.checkout-cost-delivery__way {
    width: 135px;
}

.checkout-cost-itog {
    margin-bottom: 32px;
    margin-top: 24px;
}

.checkout-cost-itog__text {
    font-family: "Inter SemiBold";
    font-size: 20px;
}

.checkout-cost-itog__text span {
    color: #a5a5a5;
}

.checkout-cost-itog__summ {
    font-family: "Inter SemiBold";
    font-size: 20px;
}

.checkout-cost-itog__summ span {
    font-family: "Inter SemiBold";
    font-size: 20px;
}

.checkout-cost-checkbox {
    margin-top: 8px;
    position: relative;
    cursor: pointer;
}

.checkout-cost-checkbox input {
    display: none;
}

.checkout-cost-checkbox span {
    width: 16px;
    height: 16px;
    position: relative;
    margin-right: 10px;
    border: 1px solid #1f1f1f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-custwm {
    background: #f1f1f1;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #f1f1f1;
}

.btn-custwm.active {
    border: 1px solid #f4c713;
}

.checkout-cost-checkbox span svg {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
}

.checkout-cost-checkbox input:checked ~ span {
    background: #1f1f1f;
}

.checkout-cost-checkbox input:checked ~ span svg {
    opacity: 1;
}

.checkout-cost-checkbox__text {
    width: calc(100% - 28px);
    color: #4c4c4c;
    font-size: 12px;
}

.checkout-cost-checkbox__text a {
    color: #4c4c4c;
    font-size: 12px;
    text-decoration: underline;
}

.checkout-tabs {
    margin-bottom: 32px;
}

.checkout__tab {
    background: #f4f4f4;
    padding: 15px;
    border-radius: 5px;
    margin-right: 8px;
}

.checkout__tab span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #a5a5a5;
    margin-right: 8px;
    position: relative;
}

.checkout__tab span::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #1f1f1f;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}

.checkout__tab p {
    font-size: 14px;
    color: #4c4c4c;
}

.checkout__tab.active span {
    border: 2px solid #1f1f1f;
}

.checkout__tab.active span::before {
    opacity: 1;
}

.checkout-block.userpay .checkout-block-inner {
    display: none;
}

.checkout-block.userpay .checkout-block-inner.show {
    display: block;
}

.checkout-block:not(:last-child) {
    margin-bottom: 32px;
}

.checkout-block__title {
    margin-bottom: 24px;
}

.checkout-block-elem__title {
    font-size: 14px;
    margin-bottom: 8px;
}

.checkout-block-elem__title span {
    color: #a5a5a5;
    font-size: 14px;
}

.checkout-block-elem:not(:last-child) {
    margin-bottom: 16px;
}

.checkout-block-label {
    margin-right: 16px;
    margin-bottom: 16px;
    cursor: pointer;
}

.checkout-block-label span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #a5a5a5;
    margin-right: 8px;
    position: relative;
    display: inline-block;
}

.checkout-block-label span::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #1f1f1f;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}

.checkout-block-label p {
    font-size: 14px;
}

.checkout-block-label input {
    display: none;
}

.checkout-block-label input:checked ~ span {
    border: 2px solid #1f1f1f;
}

.checkout-block-label input:checked ~ span::before {
    opacity: 1;
}

.checkout-block-label__text {
    display: none;
}

.checkout-block .method-block {
    margin-top: 8px;
}

.checkout-block.payment .checkout-block-label {
    background: #f1f1f1;
    padding: 15px;
    border-radius: 5px;
}

.blog-bottom .btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.blog-item {
    width: 278px;
}

.blog-item:not(:nth-child(4n + 4)) {
    margin-right: 19px;
}

.blog-item:not(:nth-child(-n + 4)) {
    margin-top: 40px;
}

.blog-item__image {
    overflow: hidden;
    width: 100%;
    height: 170px;
    border-radius: 5px;
    margin-bottom: 8px;
}

.blog-item__image img {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.blog-item-head {
    margin-bottom: 8px;
}

.blog-item__date {
    font-size: 12px;
    color: #5f5f5f;
}

.blog-item__time span {
    margin-left: 8px;
    font-size: 12px;
    color: #5f5f5f;
}

.blog-item__title {
    font-size: 16px;
    font-family: "Inter SemiBold";
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.blog-item__descr {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 4;
    font-size: 14px;
    margin-bottom: 8px;
}

.blog-item-panel {
    margin-top: auto;
    margin-bottom: 8px;
}

.blog-item-panel__item svg {
    margin-right: 8px;
}

.blog-item-panel__item span {
    font-size: 12px;
}

.blog-item-panel__item:not(:last-child) {
    margin-right: 15px;
}

.blog-item-author__image {
    margin-right: 16px;
}

.blog-item-author__name {
    font-size: 14px;
    width: calc(100% - 56px);
}

.blog-item:hover .blog-item__image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.blog-item:hover .blog-item__title {
    color: #1018b7;
}

.blog__more:hover {
    background: #1f1f1f;
    color: #f4c713;
}

.blog__more:active {
    background: #393939;
}

.blogPage-articles {
    background: #f4f4f4;
    padding: 35px;
    border-radius: 5px;
}

.blogPage-articles__title {
    margin-bottom: 24px;
    font-size: 20px;
    font-family: "Inter Medium";
}

.blogPage-articles-item:not(:last-child) {
    margin-bottom: 16px;
}

.blogPage-articles-item__title {
    font-family: "Inter SemiBold";
    margin-bottom: 8px;
}

.blogPage-articles-item-list-inner {
    margin-top: 8px;
}

.blogPage-articles-item-inner:not(:last-child) {
    margin-bottom: 8px;
}

.blogPage-articles-item-inner__link {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.blogPage-articles-item-inner__link:hover {
    color: #1018b7;
}

.blogPage-articles-item-inner__link:active {
    border-bottom: 1px solid #1018b7;
}

.blogPage-share__title {
    margin-bottom: 24px;
}

.blogPage-share-item:not(:last-child) {
    margin-right: 8px;
}

.blogPage-share-item__link svg path {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.blogPage-share-item__link circle {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.blogPage-share-item__link:hover svg path {
    fill: #f4c713;
}

.blogPage-share-item__link:hover circle {
    fill: #f4c713;
}

.blogPage-share-item__link:hover circle + path {
    fill: #fff;
}

.blogPage__banner {
    height: 376px;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
}

.blogPage-author {
    margin-bottom: 24px;
}

.blogPage-author__image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 16px;
    overflow: hidden;
}

.blogPage-author__name {
    font-size: 14px;
}

.blogPage-panel {
    margin-bottom: 24px;
}

.blogPage-panel__item:not(:last-child) {
    margin-right: 24px;
}

.blogPage-panel__item svg {
    margin-right: 8px;
}

.blogPage-inner {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 5px;
}

.blogPage-comments-form {
    padding: 40px;
    border-radius: 5px;
    background: #ffffff;
}

.blogPage-comments-form-checkbox {
    position: relative;
    cursor: pointer;
}

.blogPage-comments-form-checkbox input {
    display: none;
}

.blogPage-comments-form-checkbox span {
    width: 16px;
    height: 16px;
    position: relative;
    margin-right: 10px;
    border: 1px solid #1f1f1f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.blogPage-comments-form-checkbox span svg {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
}

.blogPage-comments-form-checkbox input:checked ~ span {
    background: #1f1f1f;
}

.blogPage-comments-form-checkbox input:checked ~ span svg {
    opacity: 1;
}

.blogPage-comments-form-checkbox__text {
    width: calc(100% - 28px);
    color: #4c4c4c;
    font-size: 12px;
}

.blogPage-comments-form-checkbox__text a {
    color: #4c4c4c;
    font-size: 12px;
    text-decoration: underline;
}

.blogPage-comments-form-elem {
    width: 49%;
    margin-bottom: 16px;
}

.blogPage-comments-form-elem:first-child {
    width: 100%;
}

.blogPage-comments-form-elem__title {
    margin-bottom: 8px;
    font-size: 14px;
    font-family: "Inter Medium";
}

.blogPage-comments-form-elem__input {
    background: #f4f4f4;
    border-radius: 5px;
    width: 100%;
    padding: 14px 16px;
    font-family: "Inter Regular";
    font-size: 14px;
}

.blogPage-comments-form-elem textarea {
    height: 128px;
}

.blogPage-comments-form-elem-bottom {
    margin-top: 24px;
}

.blogPage-comments-form__button {
    margin-bottom: 8px;
}

.blogPage-comments-item {
    display: none;
}

.blogPage-comments-item.load {
    display: block;
}

.blogPage-comments-item.dopLoad {
    display: block;
}

.blogPage-comments-item:not(:first-child) {
    margin-top: 32px;
}

.blogPage-comments-item-head {
    margin-bottom: 16px;
}

.blogPage-comments-item__name {
    font-family: "Inter Medium";
    font-size: 14px;
    margin-right: 16px;
}

.blogPage-comments-item__date {
    color: #a5a5a5;
    font-size: 14px;
}

.blogPage-comments-item__text {
    margin-bottom: 8px;
}

.blogPage-comments-item__btn {
    color: #1018b7;
    margin-right: 16px;
    border-bottom: 1px solid transparent;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.blogPage-comments-item__btn span {
    color: #1018b7;
}

.blogPage-comments-item__btn:hover {
    border-bottom: 1px solid #1018b7;
}

.blogPage-comments-item-list {
    margin-top: 24px;
}

.blogPage-comments-item-inner {
    padding-left: 24px;
    position: relative;
}

.blogPage-comments-item-inner:not(:last-child) {
    margin-bottom: 24px;
}

.blogPage-comments-item-inner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: #dfdfdf;
}

.blogPage-comments__btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background: #f4f4f4;
    cursor: pointer;
}

.blogPage-comments__btn:hover {
    background: #1f1f1f;
    color: #f4c713;
}

.blogPage-comments__btn:hover svg path {
    fill: #f4c713;
}

.blogPage-comments__btn:active {
    color: #f4c713;
    background: #393939;
}

.blogPage-comments__btn:active svg path {
    fill: #f4c713;
}

.blogArticles-panel button {
    background: #f1f1f1;
    width: 40px;
    height: 40px;
    border-radius: 5px;
}

.blogArticles-panel button:not(:last-child) {
    margin-right: 5px;
}

.blogArticles-panel button svg path {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.blogArticles-panel button:hover svg path {
    fill: #f4c713;
}

.blogArticles-panel button:active svg path {
    fill: #1018b7;
}

.blogArticles .blog-item {
    margin-top: 0;
    margin-right: 0;
}

.contacts-item {
    width: 49%;
}

.contacts-item:last-child {
    width: 100%;
    margin-top: 44px;
}

.contacts-item:nth-child(2) .contacts-item-info {
    padding: 0;
}

.contacts-item-info {
    background: #f4f4f4;
    border-radius: 5px;
    overflow: hidden;
    padding: 48px;
    margin-bottom: 24px;
}

.contacts-item-info iframe {
    width: 100%;
    height: 287px;
}

.contacts-item__phone {
    margin-bottom: 24px;
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.contacts-item__phone:hover {
    color: #1018b7;
}

.contacts-item__mail {
    color: #1018b7;
    font-size: 18px;
    margin-bottom: 24px;
    font-family: "Inter SemiBold";
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.contacts-item__mail:hover {
    border-bottom: 1px solid #1018b7;
}

.contacts-item__mail:active {
    color: #393939;
    border-bottom: 1px solid #393939;
}

.contacts-item__address {
    font-size: 18px;
    font-family: "Inter SemiBold";
    margin-bottom: 24px;
}

.contacts-item-work p {
    color: #393939;
}

.contacts-item-work p:not(:last-child) {
    margin-bottom: 8px;
}

.contacts-item__button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.contacts-item__title {
    margin-bottom: 24px;
}

.contacts-item__descr {
    line-height: 140%;
}

.product-tabs {
    margin-bottom: 32px;
}

.product-tab {
    color: #a5a5a5;
    padding: 10px 32px;
    border-bottom: 1px solid #a5a5a5;
}

.product-tab.active {
    font-family: "Inter SemiBold";
    color: #1f1f1f;
    border-bottom: 1px solid #1f1f1f;
}

.product-tab:hover {
    font-family: "Inter SemiBold";
    color: #1f1f1f;
    border-bottom: 1px solid #1f1f1f;
}

.product-left {
    position: relative;
}

.product-main__label {
    color: #fff9f9;
    padding: 8px;
    border-radius: 5px;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 12px;
    font-family: "Inter SemiBold";
    z-index: 5;
}

.product-main__label.orange {
    background: #fda539;
}

.product-main__label.green {
    background: #3ec75e;
}

.product-main__label.red {
    background: #ee4141;
}

.product-main-slider {
    border-radius: 5px;
}

.product-dop {
    position: relative;
}

.product-dop-slider {
    margin-top: 8px;
}

.product-dop-slider-item {
    width: 76px;
    height: 76px;
    cursor: pointer;
    /*       &amp;:not(:nth-child(6n + 6)) {
                    margin-right: 24px;
                }
                &amp;:not(:nth-child(-n + 6)) {
                    margin-top: 24px;
                }*/
}

.product-dop-panel button {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #f1f1f1;
    z-index: 5;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.product-dop-panel button.swiper-button-disabled {
    opacity: 0;
}

.product-dop-panel button svg path {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.product-dop-panel button:hover svg path {
    fill: #f4c713;
}

.product-dop-panel button:active svg path {
    fill: #1018b7;
}

.product-dop-panel__next {
    right: 18px;
}

.product-dop-panel__prev {
    left: 18px;
}

.product-left {
    width: 576px;
}

.product-right {
    width: 576px;
}

.product__measurer {
    margin-top: 24px;
    max-width: 306px;
}

.product-rating {
    margin-top: 24px;
}

.product-rating li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.product-rating li:not(:last-child) {
    margin-right: 5px;
}

.product-rating .active svg path {
    fill: #f4c713;
}

.product__article {
    margin-top: 24px;
    font-size: 14px;
    color: #393939;
}

.product__article span {
    font-size: 14px;
    color: #393939;
}

.product__status {
    margin-top: 24px;
    font-family: "Inter Medium";
    font-size: 14px;
    display: inline-block;
}

.product__status.gray {
    color: #a5a5a5;
}

.product__status.green {
    color: #3ec75e;
}

.product__status.red {
    background: #ee4141;
}

.product__cost {
    margin-top: 16px;
}

.product__cost-main {
    display: inline;
    margin-right: 8px;
}

.product__cost-sale {
    display: inline;
    font-size: 20px;
    color: #a5a5a5;
    text-decoration: line-through;
}

.product__cost-sale span {
    font-size: 20px;
    color: #a5a5a5;
}

.product__incart {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: 8px;
}

.product__buy {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.product__buy:hover {
    background: #1f1f1f;
    color: #f4c713;
}

.product__buy:active {
    background: #393939;
}

.product-quality {
    border: 1px solid #dfdfdf;
    background: #f4f4f4;
    border-radius: 5px;
    margin-right: 8px;
}

.product-quality input {
    padding: 0 !important;
    width: 50px;
    text-align: center;
}

.product-quality span {
    padding: 0 8px;
}

.product-quality button {
    padding: 15px 16px;
}

.product-panel {
    margin-top: 24px;
}

.product__free-btn {
    color: #1018b7;
    margin-top: 24px;
}

.product__free-btn:hover {
    text-decoration: underline;
}

.product-info-item:not(:last-child) {
    margin-bottom: 8px;
}

.product-info-block {
    display: none;
}

.product-info-block table {
    margin-bottom: 20px;
}

.product-info-block table td:first-child {
    font-weight: 600;
}

.product-info-block table td:last-child {
    padding-left: 20px;
    box-sizing: border-box;
}

.product-info-block.show {
    display: block;
}

.product-info-block-content h2,
.product-info-block-content h3,
.product-info-block-content h4 {
    margin-bottom: 16px;
    font-size: 20px;
    font-family: "Inter SemiBold";
}

.product-info-block-content p {
    margin-bottom: 24px;
}

.product-info-block-content h5 {
    font-size: 18px;
    font-family: "Inter SemiBold";
    margin-bottom: 16px;
}

.product-info-block-content b {
    font-family: "Inter SemiBold";
}

.product-info-block-content ul {
    margin: 16px 0;
}

.product-info-block-content ul li {
    font-size: 16px;
    font-family: "Inter Regular";
}

.product-info-block-content ul li::before {
    content: "•";
}

.product-info-block-content ol {
    padding-left: 20px;
    margin: 16px 0;
}

.product-info-block-content ol li {
    font-size: 16px;
    font-family: "Inter Regular";
    display: list-item;
}

.product-info-block-content a {
    color: #1018b7;
}

.product-info-block-content table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    margin-bottom: 30px;
}

.product-info-block-content table tr {
    border: 1px solid #dfdfdf;
}

.product-info-block-content table tr td {
    font-size: 16px;
    padding: 15px 25px;
    font-family: "Inter Regular";
}

.product-info-block-content table tr td:not(:last-child) {
    border-right: 1px solid #dfdfdf;
}

.product-info-block-content table thead tr td {
    background: #f4f4f4;
    font-family: "Inter Medium";
}

.product-info-block-content img {
    width: 100%;
    border-radius: 5px;
}

.product-info-docs a {
    color: #1018b7;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: inline-block;
}

.product-info-docs a:not(:last-child) {
    margin-bottom: 16px;
}

.product-info-docs a:hover {
    text-decoration: underline;
}

.product-info-qa__button,
.product-info-qa__load {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.product-info-qa__button {
    margin-bottom: 32px;
}

.product-info-qa__load {
    margin-top: 32px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.product-info-qa__load:hover {
    background: #1f1f1f;
    color: #f4c713;
}

.product-info-qa__load:active {
    background: #393939;
}

.product-info-qa-item {
    display: none;
}

.product-info-qa-item:not(:last-child) {
    margin-bottom: 32px;
}

.product-info-qa-item-head {
    margin-bottom: 16px;
}

.product-info-qa-item__name {
    font-size: 14px;
    margin-right: 16px;
}

.product-info-qa-item__date {
    font-size: 14px;
    color: #a5a5a5;
}

.product-info-qa-item__title {
    font-size: 20px;
    font-family: "Inter SemiBold";
    margin-bottom: 16px;
}

.product-info-qa-item__text {
    color: #a5a5a5;
    margin-bottom: 8px;
    display: inline-block;
}

.product-info-qa-item-body {
    padding-left: 16px;
    border-left: 1px solid #dfdfdf;
}

.product-info-qa-item.load {
    display: block;
}

.product-info-qa-item.dopLoad {
    display: block;
}

.product-info-recall__button,
.product-info-recall__load {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.product-info-recall__button {
    margin-bottom: 32px;
}

.product-info-recall__load {
    margin-top: 32px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.product-info-recall__load:hover {
    background: #1f1f1f;
    color: #f4c713;
}

.product-info-recall__load:active {
    background: #393939;
}

.product-info-recall-item {
    display: none;
}

.product-info-recall-item:not(:last-child) {
    margin-bottom: 32px;
}

.product-info-recall-item-head {
    margin-bottom: 16px;
}

.product-info-recall-item__name {
    font-size: 14px;
    margin-right: 16px;
}

.product-info-recall-item__date {
    font-size: 14px;
    color: #a5a5a5;
}

.product-info-recall-item__text {
    color: #a5a5a5;
    margin-bottom: 8px;
    display: inline-block;
}

.product-info-recall-item-body {
    padding-left: 16px;
    border-left: 1px solid #dfdfdf;
}

.product-info-recall-item-rating {
    margin-bottom: 16px;
}

.product-info-recall-item-rating li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.product-info-recall-item-rating li:not(:last-child) {
    margin-right: 5px;
}

.product-info-recall-item-rating .active svg path {
    fill: #f4c713;
}

.product-info-recall-item.load {
    display: block;
}

.product-info-recall-item.dopLoad {
    display: block;
}

.errorPage__title {
    font-family: "Inter Bold";
    font-size: 128px;
    color: #393939;
}

.errorPage__descr {
    width: 800px;
    font-size: 18px;
    text-align: center;
    font-family: "Inter SemiBold";
}

.errorPage__descr a {
    font-size: 18px;
    font-family: "Inter SemiBold";
    color: #1018b7;
    border-bottom: 1px solid transparent;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.errorPage__descr a:hover {
    border-bottom: 1px solid #1018b7;
}

.errorPage__link {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.catalogBlock-panel button {
    background: #f1f1f1;
    width: 40px;
    height: 40px;
    border-radius: 5px;
}

.catalogBlock-panel button:not(:last-child) {
    margin-right: 5px;
}

.catalogBlock-panel button svg path {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.catalogBlock-panel button:hover svg path {
    fill: #f4c713;
}

.catalogBlock-panel button:active svg path {
    fill: #1018b7;
}

.catalogBlock .catalog-item {
    height: auto;
    margin-top: 0 !important;
}

.works-tab {
    border-radius: 5px;
    width: 100%;
    padding: 8px;
    background: #f4f4f4;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.works-tab:not(:last-child) {
    margin-bottom: 8px;
}

.works-tab.active {
    background: #f4c713;
    color: #1f1f1f;
}

.works-tab:hover {
    background: #f4c713;
    color: #1f1f1f;
}

.works-item {
    width: 276px;
}

.works-item:not(:nth-child(3n + 3)) {
    margin-right: 20px;
}

.works-item:not(:nth-child(-n + 3)) {
    margin-top: 20px;
}

.works-item-image {
    height: 200px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 8px;
}

.works-item-image img {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.works-item:hover .works-item-image img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.works-block {
    display: none;
}

.works-block.show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.recallPage-item:nth-child(even) .recallPage-item-imgs {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}

.recallPage-item:not(:last-child) {
    margin-bottom: 48px;
}

.recallPage-item-info {
    width: 577px;
}

.recallPage-item-imgs {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: 575px;
}

.recallPage-item-content {
    background: #f4f4f4;
}

.recallPage-item__title {
    margin-bottom: 32px;
}

.recallPage-item-content {
    padding: 32px;
    position: relative;
    border-radius: 5px;
}

.recallPage-item-content .elem {
    position: absolute;
    right: 18px;
    bottom: -42px;
}

.recallPage-item-block__title {
    margin-bottom: 8px;
    font-family: "Inter SemiBold";
}

.recallPage-item-block__descr {
    font-size: 14px;
}

.recallPage-item-block:not(:last-child) {
    margin-bottom: 24px;
}

.recallPage-item-image {
    width: 49%;
    height: 240px;
    border-radius: 5px;
    overflow: hidden;
}

.recallPage-item-image:not(:nth-child(-n + 2)) {
    margin-top: 10px;
}

.recallPage-item-image img {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.recallPage-item-image:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.recallPage-item-recall {
    margin-top: 10px;
    padding: 32px;
    background: #fff;
}

.recallPage-item-recall__title {
    margin-bottom: 8px;
    font-family: "Inter SemiBold";
}

.recallPage-item-recall__descr {
    font-size: 14px;
}

.recallPage-pagination .btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.recallPage-pagination .btn:hover {
    background: #1f1f1f;
    color: #f4c713;
}

.recallPage-pagination .btn:active {
    background: #393939;
}

.cabinet-wrapper {
    width: 476px;
}

.cabinet-tabs {
    margin-bottom: 32px;
}

.cabinet__descr {
    text-wrap: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 32px;
}

.cabinet__tab {
    background: #f4f4f4;
    padding: 15px;
    border-radius: 5px;
    margin-right: 8px;
}

.cabinet__tab.disabled svg {
    margin-right: 12px;
}

.cabinet__tab span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #a5a5a5;
    margin-right: 8px;
    position: relative;
}

.cabinet__tab span::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #1f1f1f;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}

.cabinet__tab p {
    font-size: 14px;
    color: #4c4c4c;
}

.cabinet__tab.active span {
    border: 2px solid #1f1f1f;
}

.cabinet__tab.active span::before {
    opacity: 1;
}

.cabinet-form {
    display: none;
}

.cabinet-form.show {
    display: block;
}

.cabinet-block-elem {
    position: relative;
}

.cabinet-block-elem__title {
    font-size: 14px;
    margin-bottom: 8px;
}

.cabinet-block-elem__title span {
    color: #a5a5a5;
    font-size: 14px;
}

.cabinet-block-elem:not(:last-child) {
    margin-bottom: 16px;
}

.cabinet-block-elem .password__button.open svg:nth-child(1) {
    display: none;
}

.cabinet-block-elem .password__button.open svg:nth-child(2) {
    display: block;
}

.cabinet-block-elem .password__button svg {
    cursor: pointer;
    position: absolute;
    right: 18px;
    top: 38px;
}

.cabinet-block-elem .password__button svg:nth-child(2) {
    display: none;
}

.cabinet-form__button {
    margin-bottom: 8px;
}

.cabinet-form-checkbox {
    position: relative;
    cursor: pointer;
}

.cabinet-form-checkbox input {
    display: none;
}

.cabinet-form-checkbox span {
    width: 16px;
    height: 16px;
    position: relative;
    margin-right: 10px;
    border: 1px solid #1f1f1f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cabinet-form-checkbox span svg {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
}

.cabinet-form-checkbox input:checked ~ span {
    background: #1f1f1f;
}

.cabinet-form-checkbox input:checked ~ span svg {
    opacity: 1;
}

.cabinet-form-checkbox__text {
    width: calc(100% - 28px);
    color: #4c4c4c;
    font-size: 12px;
}

.cabinet-form-checkbox__text a {
    color: #4c4c4c;
    font-size: 12px;
    text-decoration: underline;
}

.cabinet-alien {
    margin: 32px 0;
}

.cabinet-recaptcha {
    margin-bottom: 32px;
}

.cabinet-links {
    margin: 32px 0;
}

.cabinet__link {
    color: #1018b7;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.cabinet__link:not(:last-child) {
    margin-bottom: 8px;
}

.cabinet__link:hover {
    border-bottom: 1px solid #1018b7;
}

.cabinet__edit {
    margin-left: 12px;
}

.articleVspom-banner {
    height: 428px;
    overflow: hidden;
    border-radius: 5px;
    width: 100%;
}

.articleVspom-main-info {
    width: 577px;
}

.articleVspom-main-info__image {
    width: 577px;
    overflow: hidden;
    border-radius: 5px;
    height: 440px;
}

.articleVspom h2,
.articleVspom h3,
.articleVspom h4 {
    margin-bottom: 16px;
    font-size: 20px;
    font-family: "Inter SemiBold";
}

.articleVspom p {
    margin-bottom: 24px;
}

.articleVspom h5 {
    font-size: 18px;
    font-family: "Inter SemiBold";
    margin-bottom: 16px;
}

.articleVspom b {
    font-family: "Inter SemiBold";
}

.articleVspom ul {
    margin: 16px 0;
}

.articleVspom ul li {
    font-size: 16px;
    font-family: "Inter Regular";
}

.articleVspom ul li::before {
    content: "•";
}

.articleVspom ol {
    padding-left: 20px;
    margin: 16px 0;
}

.articleVspom ol li {
    font-size: 16px;
    font-family: "Inter Regular";
    display: list-item;
}

.articleVspom a {
    color: #1018b7;
}

.articleVspom a:hover {
    text-decoration: underline;
}

.articleVspom table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    margin-bottom: 30px;
}

.articleVspom table tr {
    border: 1px solid #dfdfdf;
}

.articleVspom table tr td {
    font-size: 16px;
    padding: 15px 25px;
    font-family: "Inter Regular";
}

.articleVspom table tr td:not(:last-child) {
    border-right: 1px solid #dfdfdf;
}

.articleVspom table thead tr td {
    background: #f4f4f4;
    font-family: "Inter Medium";
}

.articleVspom img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}


.articleVspom-wm .tizer {
    width: 25%;
    height: auto;
}


@media (max-width: 768px) {
    .articleVspom-wm .tizers {
        display: flex;
        flex-direction: column;
    }

    .articleVspom-wm .tizer {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        padding: 20px !important;
        gap: 0 !important;
        margin-bottom: 0;
    }

    .articleVspom-wm .tizer--description {
        font-size: 13px !important;
        line-height: 14px !important;
    }

    .articleVspom-wm .tizer img {
        align-self: flex-start;
        margin-bottom: 0;
    }
}

.price-list {
    margin: 25px auto;
    width: 169px;
}

.price-list .btn {
    max-width: 100% !important;
    background-color: #F47524 !important;
    color: white !important;
}

.price-list .btn:hover {
    color: black !important;
}

.popup {
    background: rgba(0, 0, 0, 0.6);
    overflow: auto;
    padding: 50px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1010;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.popup.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.popup__close {
    position: absolute;
    right: 32px;
    top: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.popup-wrapper {
    position: relative;
    background: #ffffff;
    margin: auto;
    padding: 60px 40px;
    width: 504px;
    border-radius: 20px;
    overflow: hidden;
    -webkit-box-shadow: 0px 15px 33px 0px #c7c7c77d, 0px 60px 60px 0px #c7c7c76e,
    0px -15px 33px 0px #c7c7c77d, 0px -60px 60px 0px #c7c7c76e;
    box-shadow: 0px 15px 33px 0px #c7c7c77d, 0px 60px 60px 0px #c7c7c76e,
    0px -15px 33px 0px #c7c7c77d, 0px -60px 60px 0px #c7c7c76e;
}

.popup__title {
    margin-bottom: 32px;
}

.popup-form-elem__title {
    font-family: "Inter Medium";
    font-size: 14px;
    margin-bottom: 8px;
}

.popup-form-elem:not(:last-child) {
    margin-bottom: 16px;
}

.popup-form-recaptcha {
    margin: 32px 0;
}

.popup-form-checkbox {
    margin-top: 8px;
    position: relative;
    cursor: pointer;
}

.popup-form-checkbox input {
    display: none;
}

.popup-form-checkbox span {
    width: 16px;
    height: 16px;
    position: relative;
    margin-right: 10px;
    border: 1px solid #1f1f1f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.popup-form-checkbox span svg {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
}

.popup-form-checkbox input:checked ~ span {
    background: #1f1f1f;
}

.popup-form-checkbox input:checked ~ span svg {
    opacity: 1;
}

.popup-form-checkbox__text {
    width: calc(100% - 28px);
    color: #4c4c4c;
    font-size: 12px;
}

.popup-form-checkbox__text a {
    color: #4c4c4c;
    font-size: 12px;
    text-decoration: underline;
}

.popup textarea {
    border: none;
    background: #f4f4f4;
    padding: 14px 16px;
    font-size: 14px;
    width: 100%;
    height: 132px;
    border-radius: 5px;
}

.product-main-slider .swiper-slide img {
    width: 100% !important;
    height: 420px !important;
}

.product-left .img-cover {
    object-fit: contain;
}

.sertificate-wrapper {

    margin-top: 30px;
}

.sertificate-slider {
    width: 100%;

}

.sertificate-head {
    flex-direction: column;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
}

.articleOther-panel.f-center {
    align-items: end;
    width: 100%;
    text-align: left;
    justify-content: end;
}

.two_column {
    display: flex;
    gap: 60px;
}

.licence_list_small {
    position: relative;
    background: #fff;
    margin-bottom: 30px;
    font-size: 0;
}

.licenses {
    display: flex;
    gap: 12px;
}

.sertificate-item img {
    width: 250px;
    height: auto;
}

@media screen and (max-width: 992px) {
    .sertificate-wrapper {
        flex-direction: column;
    }

    .articleOther-panel.f-center {
        margin-bottom: 15px;
    }
}

/*# sourceMappingURL=main.css.map */
@media screen and (max-width: 576px) {
    .popup .popup-wrapper {
        position: relative;
        background: #ffffff;
        margin: auto;
        padding: 30px 30px;
        width: 90%;
        border-radius: 20px;
        overflow: hidden;
        -webkit-box-shadow: 0px 15px 33px 0px #c7c7c77d, 0px 60px 60px 0px #c7c7c76e,
        0px -15px 33px 0px #c7c7c77d, 0px -60px 60px 0px #c7c7c76e;
        box-shadow: 0px 15px 33px 0px #c7c7c77d, 0px 60px 60px 0px #c7c7c76e,
        0px -15px 33px 0px #c7c7c77d, 0px -60px 60px 0px #c7c7c76e;
    }

    .product-wrapper {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .product-panel {
        height: auto;
    }

    .btn.svetGray,
    form.add-to-cart-form {
        margin: 10px 0;
    }

    .product-main .product-left {
        width: 100%;
    }

    .sertificate-item img {
        width: 100%;
        height: auto;
    }
}

.tizers {
    display: flex;
    margin: 60px 0;
    gap: 20px
}

.tizer {
    border: 1px solid #ccc;
    border-radius: 20px;
    height: 220px;
    width: 20%;
    font-size: 14px;
    padding: 20px;
}

.tizer div {
    text-align: center;
    text-transform: uppercase;
}

.big.tizer {
    width: 40%
}

.big.tizer div {
    text-align: left;
    padding-bottom: 10px
}

.tizer svg {
    min-width: 50px;
    padding-bottom: 10px
}

.сta-blocks {
    display: flex;
    justify-content: space-between;
    background-color: #f4c713;
    padding: 40px;
    margin-bottom: 80px;
    border-radius: 5px
}

.сta-block button {
    border: 1px solid #000
}

.сta-block:nth-child(1) {
    max-width: 480px
}

.сta-block p {
    padding: 10px 0 20px
}

.sender-btn.btn-subscribe.btn.yellow {
    width: 100%;
    padding: 13px 24px;
    display: inline-block;
    text-align: center;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 1px solid #000;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-transform: capitalize;
    height: 48px;
    color: #000;
}

.sender-btn.btn-subscribe.btn.yellow:hover {
    background: #1f1f1f;
    color: #f4c713;
}

.btn-subscribe:before {
    display: none;
}

.bx-subscribe .bx-input-group .bx-form-control {
    border: none;
    background: #f4f4f4;
    padding: 14px 16px;
    font-size: 14px;
    width: 100%;
    border-radius: 5px;
    height: 45px;
}

.сta-block p:nth-child(2) {
    padding: 10px 0 0px;
}

@media (max-width: 768px) {
    .tizers {
        display: block;
        margin: 30px 0;
    }

    .tizer {
        height: 90px;
        align-items: anchor-center;
        gap: 20px;
        display: flex;
        width: 100%;
        margin-bottom: 10px
    }

    .tizer div {
        text-align: left
    }

    .big.tizer {
        width: 100%;
        height: 240px;
        display: block
    }

    .tizer svg {
        min-width: 50px;
        padding-bottom: 0
    }

    .сta-blocks {
        display: block
    }

    .сta-block:nth-child(1) {
        padding-bottom: 40px
    }
}

/* Уменьшенный отступ для страницы каталога */
.catalog-wrapper {
    padding-top: 20px !important;
}

/* Раскрывающееся меню каталога */
.header-catalog-item-list {
    display: none;
    padding-left: 15px;
}

.header-catalog-item-head.open + .header-catalog-item-list {
    display: block;
}

.header-catalog-item-head svg {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.header-catalog-item-head.open svg {
    transform: rotate(180deg);
}

/* Обязательные поля в оформлении заказа */
.bx-authform-starrequired {
    color: #ff0000 !important;
    font-weight: bold;
    margin-left: 3px;
}

/* Personal Cabinet Styles */
.row--cabinet {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.tabs--cabinet {
    width: 33.33%;
    padding: 0 10px;
    margin-bottom: 20px;
}

.sale-personal-section-index-block {
    background: #f4f4f4;
    padding: 30px;
    border-radius: 5px;
    height: 100%;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sale-personal-section-index-block:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.sale-personal-section-index-block-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #393939;
    width: 100%;
}

.sale-personal-section-index-block-ico {
    margin-bottom: 15px;
    font-size: 32px;
    color: #f4c713;
}

.sale-personal-section-index-block-name {
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .tabs--cabinet {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .tabs--cabinet {
        width: 100%;
    }
}

/* Center popup-order content */
.popup-order {
    justify-content: center;
    align-items: center;
}

.popup-order& gt

;
div {
    margin: auto;
}

/* Fix Fancybox navigation arrows visibility */
.fancybox__nav button.f-button,
.fancybox__button--next,
.fancybox__button--prev,
.f-carousel__button {
    opacity: 1 !important;
    visibility: visible !important;
}

.fancybox__button--next,
.f-carousel__button.is-next {
    right: 20px !important;
}

.fancybox__button--prev,
.f-carousel__button.is-prev {
    left: 20px !important;
}

/* Force Fancybox navigation arrows visibility and color */
.f-carousel__button {
    background-color: rgba(30, 30, 30, 0.5) !important;
    color: #fff !important;
    z-index: 9999 !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.f-carousel__button svg {
    width: 24px !important;
    height: 24px !important;
    stroke: #fff !important;
    stroke-width: 2 !important;
}

.f-carousel__button.is-next {
    right: 20px !important;
}

.f-carousel__button.is-prev {
    left: 20px !important;
}

.f-carousel__button:hover {
    background-color: rgba(30, 30, 30, 0.8) !important;
}

/* AGGRESSIVE FIX for Fancybox Arrows */
body .f-button.is-prev,
body .f-button.is-next,
body .f-carousel__button.is-prev,
body .f-carousel__button.is-next,
body .fancybox__button--arrow_left,
body .fancybox__button--arrow_right {
    opacity: 1 !important;
    visibility: visible !important;
    background-color: rgba(30, 30, 30, 0.5) !important;
    color: #fff !important;
    z-index: 2147483647 !important;
    /* Max z-index */
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: fixed !important;
    /* Force fixed positioning */
    top: 50% !important;
    transform: translateY(-50%) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
}

body .f-button.is-next,
body .f-carousel__button.is-next,
body .fancybox__button--arrow_right {
    right: 20px !important;
    left: auto !important;
}

body .f-button.is-prev,
body .f-carousel__button.is-prev,
body .fancybox__button--arrow_left {
    left: 20px !important;
    right: auto !important;
}

/* Ensure SVG icon inside is white and visible */
body .f-button svg,
body .f-carousel__button svg,
body .fancybox__button svg {
    width: 30px !important;
    height: 30px !important;
    stroke: #ffffff !important;
    stroke-width: 2 !important;
    fill: none !important;
    visibility: visible !important;
}

/* =========================================
   QUIZ STYLES
   ========================================= */
.popup-quiz .popup-wrapper {
    max-width: 900px;
    width: 95%;
    padding: 0;
    background: #f4f4f4;
    border-radius: 10px;
    overflow: hidden;
}

.quiz-container {
    padding: 30px 40px;
}

.quiz-header {
    text-align: center;
    margin-bottom: 30px;
}

.quiz-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.quiz-subtitle {
    font-size: 16px;
    color: #666;
}

.quiz-step {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.quiz-step.active {
    display: block;
}

.quiz-step-title {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
    color: #1F1F1F;
}

.quiz-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Card Style for Image Options */
.quiz-option-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

.quiz-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.quiz-option-card input[type="radio"],
.quiz-option-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Selected State */
.quiz-option-card.selected {
    border-color: #F4C713;
    background-color: #fffcf0;
}

.quiz-option-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.quiz-option-text {
    padding: 15px;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    color: #333;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer Navigation */
.quiz-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    margin-top: 20px;
    gap: 15px;
}

.quiz-btn-prev {
    background: none;
    border: 1px solid #ccc;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    color: #666;
    transition: all 0.2s;
}

.quiz-btn-prev:hover {
    background: #e0e0e0;
    color: #333;
}

.quiz-btn-next {
    background: #F4C713;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    color: #1F1F1F;
    font-size: 16px;
    transition: all 0.2s;
}

.quiz-btn-next:hover {
    background: #deb209;
}

/* Text Inputs Style */
.quiz-input-group {
    max-width: 400px;
    margin: 0 auto 30px;
}

.quiz-input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.quiz-form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 15px;
}

.quiz-form-input:focus {
    border-color: #F4C713;
    outline: none;
}

/* Step Counter */
.quiz-progress {
    text-align: right;
    color: #999;
    font-size: 14px;
    margin-bottom: 10px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .quiz-options-grid {
        grid-template-columns: 1fr;
    }

    .quiz-option-card img {
        height: 140px;
    }

    /* Mobile Quiz Fixes */
    .popup {
        padding: 10px 0;
        /* Reduce padding on mobile */
        align-items: flex-start;
        /* Allow scrolling from top */
    }

    .popup-quiz .popup-wrapper {
        width: 100%;
        border-radius: 0;
        /* Full width looks better */
        margin: 0;
        max-width: 100%;
    }

    .quiz-container {
        padding: 20px 15px;
        /* Smaller padding */
    }

    .quiz-title {
        font-size: 22px;
    }

    .quiz-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .quiz-options-grid {
        gap: 10px;
    }

    .quiz-option-card {
        min-height: 50px;
        /* Smaller cards */
    }

    .quiz-input-group {
        margin: 0 0 20px;
    }

    .quiz-footer {
        padding-top: 15px;
        margin-top: 15px;
        position: sticky;
        /* Stick to bottom if needed, or just keep flow */
        bottom: 0;
        background: #fff;
        /* Ensure it covers content if sticky */
        z-index: 5;
    }
}

/* Fix: Lower intro slider z-index so search shows above it */
.intro-wrapper {
    position: relative;
    z-index: 1;
}

/* Fix: Boost header z-index on mobile so search form (child of header) is above everything */
@media (max-width: 1024px) {
    .header {
        z-index: 1000 !important;
    }

    /* Force full-width search form on mobile homepage (where .scroll class is missing) */
    .header-search.open .header-search-form {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: absolute;
        top: 74px;
        /* Matches header height */
        width: 100%;
        left: 0;
        z-index: 100;
        background: #f4f4f4;
        /* Match form background */
        box-sizing: border-box;
    }

    .header-search.open .close {
        display: block;
    }

    .header-search.open .icon {
        display: none;
    }
}

@media (max-width: 768px) {

    .tizer--description {
        font-size: 11px !important;
        line-height: 11px !important;
    }

    .tizer {
        border: 1px solid #ccc !important;
        padding: 10px !important;
    }

}

.rec-info-block .swiper-wrapper {
    height: auto !important;
}


.btn--wm {
    background: #f4c713 !important;
}

.btn--wm:hover {
    background: #1f1f1f !important;
    color: #f4c713 !important;
}

.product__status-order {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: right;
}

.product__status-dis {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.product__status-dis-title {
    color: #1018b7;
    font-size: 32px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .product__status-dis-title {
        font-size: 24px;
    }
}

.product__status-dis-subtitle {
    font-size: 14px;
}

.header-slogan {
    color: red;
    margin-left: 32px;
    margin-right: auto;
}

.header-slogan p {
    color: red;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 3px;
}

@media (max-width: 768px) {
    .header-slogan p {
        font-size: 15px;
    }
}

.header__inner {
    display: flex;
    align-items: center;
    width: 100%;
}

.header__soc {
    display: flex;
    align-items: center;
    margin-right: 0;
    margin-left: auto;
    gap: 20px;
}

.header__soc-link {
    width: 31px;
    height: 31px;
}

.header__nav-wrap {
    display: flex;
    align-items: center;
}

.header__soc-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (min-width: 768px) {
    .header__soc-m {
        display: none;
    }

    .header-slogan-m {
        display: none;
    }
}

@media (max-width: 768px) {
    .header__nav-wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .header__soc-m {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-right: 22px;
        margin-left: auto;
    }

    .header__soc {
        display: none;
    }

    .header-slogan {
        display: none;
    }


}

.header-slogan-m {
    color: red;
    margin-left: 32px;
    margin-right: auto;
}

.header-slogan-m p {
    color: red;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 3px;
}

@media (max-width: 768px) {
    .header-slogan-m p {
        font-size: 15px;
    }
}







