@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,700;1,700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap);
@charset "UTF-8";
:root {
    --black: #1d1d1d;
    --black-two: #333333;
    --white: #ffffff;
    --blue: #0e426f;
    --blue25: #0e426f40;
    --light-blue: #f0f7ff;
    --gray: #21364d;
    --light-gray: #f5f5f5;
    --text-gray: #8b9198;
    --border-gray: #d9d9d9;
    --light-blue-bg: #f0f2f5;
    --header-gray: #f8f8f8;
    --light-black: #696e77;
    --bg-bottom-panel: #e6e6e6;
}

* {
    padding: 0px;
    margin: 0px;
    border: 0px;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    min-width: 320px;
    scrollbar-gutter: stable;
}

body {
    color: var(--black);
    line-height: 1;
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
    font-family: "Roboto", sans-serif;
    font-size: inherit;
}

button {
    cursor: pointer;
    color: inherit;
    background-color: inherit;
}

a {
    color: inherit;
}

a:link,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

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

html {
    scroll-behavior: smooth;
}

body {
    scroll-behavior: smooth;
}

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

.news-content__href {
    display: inline-block;
    margin: 30px auto;
}

.lock body {
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
}

.wrapper {
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
}

.wrapper > main {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.wrapper > * {
    min-width: 0;
}

/*
(i) Стили будут применяться ко 
всем классам содержащим *__container
Например header__container, main__container и т.д.
Снипет (HTML): cnt
*/

[class*="__container"] {
    max-width: 80.9375rem;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    margin: 0 auto;
    padding: 0 0.9375rem;
}

body::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: opacity 0.8s ease 0s;
    transition: opacity 0.8s ease 0s;
    pointer-events: none;
    z-index: 149;
}

.popup-show body::after {
    opacity: 1;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 30px 10px;
    -webkit-transition: visibility 0.8s ease 0s;
    transition: visibility 0.8s ease 0s;
    visibility: hidden;
    pointer-events: none;
}

.popup_show {
    z-index: 150;
    visibility: visible;
    overflow: auto;
    pointer-events: auto;
}

.popup_show .popup__content {
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.popup__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center;
}

.popup__content {
    position: relative;
    visibility: hidden;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.3s ease 0s;
    transition: -webkit-transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
    background-color: var(--white);
    padding: 40px 24px;
    width: 100%;
    max-width: 465px;
    border-radius: 10px;
}

.lock .popup__content {
    visibility: visible;
}

.popup__close {
    position: absolute;
    top: 10px;
    right: 10px;
}

.popup-form {
    width: 100%;
}

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

.popup-form__title {
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 600;
    line-height: 110%;
    text-align: center;
    color: var(--black);
}

.popup-form__label {
    position: relative;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 5px;
}

.popup-form__label.last {
    margin-bottom: 6px;
}

.popup-form__label .form__error {
    position: absolute;
    bottom: -15px;
    left: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 100%;
    color: red;
    display: none !important;
}

.popup-form__label span {
    font-size: 17px;
    font-weight: 400;
    line-height: 120%;
    text-align: left;
    color: var(--black);
}

.popup-form__input {
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    text-align: left;
    color: var(--black);
    border: 1px solid var(--blue);
    border-radius: 10px;
}

.popup-form__input::-webkit-input-placeholder {
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    text-align: left;
    color: var(--text-gray);
}

.popup-form__input::-moz-placeholder {
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    text-align: left;
    color: var(--text-gray);
}

.popup-form__input:-ms-input-placeholder {
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    text-align: left;
    color: var(--text-gray);
}

.popup-form__input::-ms-input-placeholder {
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    text-align: left;
    color: var(--text-gray);
}

.popup-form__input::placeholder {
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    text-align: left;
    color: var(--text-gray);
}

.popup-form__policy {
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 400;
    line-height: 130%;
    text-align: left;
    color: var(--black);
}

.popup-form__button {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.thanks__wrap {
    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;
    row-gap: 20px;
}

.thanks__title {
    font-size: 32px;
    font-weight: 600;
    line-height: 110%;
    text-align: center;
    color: var(--black);
}

.thanks__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    text-align: left;
    color: var(--black);
}

[class*="-ibg"] {
    position: relative;
}

[class*="-ibg"] img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

[class*="-ibg_contain"] img {
    -o-object-fit: contain;
    object-fit: contain;
}

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

.page {
    padding-top: 170px;
}

.section-top-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 117%;
    text-align: center;
}

.section-title {
    margin-bottom: 50px;
    font-size: 32px;
    font-weight: 700;
    line-height: 110%;
    text-align: center;
}

.blue-btn {
    padding: 20px 34px;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.0509803922);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.0509803922);
    border: 1px solid var(--gray);
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    text-align: center;
    color: var(--blue);
    border-radius: 10px;
    -webkit-transition: color 0.3s ease, background-color 0.3s ease;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.blue-btn:active {
    background-color: var(--blue);
    color: var(--white);
}

.blue-btn-small {
    padding: 13px 15px;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.0509803922);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.0509803922);
    border: 1px solid var(--gray);
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    text-align: center;
    color: var(--blue);
    border-radius: 10px;
    -webkit-transition: color 0.3s ease, background-color 0.3s ease;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.blue-btn-small:active {
    background-color: var(--blue);
    color: var(--white);
}

.blue-btn-fill {
    padding: 20px 34px;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.0509803922);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.0509803922);
    border: 1px solid var(--blue);
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    text-align: center;
    color: var(--white);
    background-color: var(--blue);
    border-radius: 10px;
    -webkit-transition: color 0.3s ease, background-color 0.3s ease;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.blue-btn-fill:active {
    background-color: var(--white);
    color: var(--blue);
}

.swiper-button-prev,
.swiper-button-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    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;
    -webkit-box-shadow: 0px 0px 16px 0px rgba(80, 79, 79, 0.1019607843);
    box-shadow: 0px 0px 16px 0px rgba(80, 79, 79, 0.1019607843);
}

.swiper-button-disabled {
    opacity: 0.5 !important;
}

.swiper-button-lock {
    display: none !important;
}

.beadcrumbs {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 1200px) {
    .page-welcome .beadcrumbs {
        position: absolute;
        top: -35px;
        left: 0px;
    }
}

.beadcrumbs ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 6px;
    -moz-column-gap: 6px;
    column-gap: 6px;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none !important;
    scrollbar-color: transparent transparent;
    width: 100%;
    max-width: 100%;
}

.beadcrumbs ul::-webkit-scrollbar {
    display: none;
}

.beadcrumbs ul::-moz-scrollbar {
    width: 0px;
    height: 0px;
}

.beadcrumbs ul li {
    display: flex;
    font-family: "Montserrat";
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    text-align: left;
    color: var(--black);
    white-space: nowrap;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.beadcrumbs ul li a,
.beadcrumbs ul li span {
    display: flex;
}

.beadcrumbs ul li::after {
    content: "/";
    padding-left: 3px;
}

.beadcrumbs ul li:last-child {
    color: var(--blue);
    pointer-events: none;
    cursor: default;
}

.beadcrumbs ul li:last-child::after {
    display: none;
}

.beadcrumbs ul li:active {
    color: var(--blue);
}

input._form-error {
    border-color: red !important;
}

._sending button {
    pointer-events: none !important;
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 10;
    -webkit-transition: top 0.3s ease;
    transition: top 0.3s ease;
}

.header__top {
    padding: 24px 0;
}

.header__top .header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__mobile-back {
    display: none;
}

.header__mobile-search-btn {
    display: none;
}

.header__logo {
    width: 100%;
    max-width: 196px;
}

.header__logo-img {
    aspect-ratio: 196/32;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.header__address {
    max-width: 185px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-column-gap: 13px;
    -moz-column-gap: 13px;
    column-gap: 13px;
}

.header__address svg {
    min-width: 15px;
    height: 15px;
}

.header__address span {
    font-size: 12px;
    font-weight: 400;
    line-height: 116%;
    letter-spacing: -0.3000000119px;
    text-align: left;
    color: var(--text-gray);
}

.header .header-search {
    width: 100%;
    max-width: 415px;
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    border-radius: 8px;
    border: 1px solid var(--blue);
    height: 42px;
}

.header .header-search__input {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 8px;
    padding: 5px 13px;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    text-align: left;
    color: var(--blue);
    outline: none;
    z-index: 2;
}

.header .header-search__input::-webkit-input-placeholder {
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    text-align: left;
    color: var(--text-gray);
}

.header .header-search__input::-moz-placeholder {
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    text-align: left;
    color: var(--text-gray);
}

.header .header-search__input:-ms-input-placeholder {
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    text-align: left;
    color: var(--text-gray);
}

.header .header-search__input::-ms-input-placeholder {
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    text-align: left;
    color: var(--text-gray);
}

.header .header-search__input::placeholder {
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    text-align: left;
    color: var(--text-gray);
}

.header .header-search__button {
    position: relative;
    border-radius: 8px;
    width: 42px;
    min-width: 42px;
    height: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid var(--blue);
    background-color: var(--blue);
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    right: -1px;
    top: -1px;
    height: 42px;
    z-index: 2;
}

.header .header-search__button svg {
    width: 24px;
    height: 24px;
}

.header .header-search__button svg path {
    -webkit-transition: fill 0.3s ease;
    transition: fill 0.3s ease;
}

.header .header-search__button:active {
    background-color: transparent;
}

.header .header-search__button:active svg path {
    fill: var(--blue);
}

.header__phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.header__phone svg {
    min-width: 16px;
    height: 16px;
}

.header__phone span {
    font-size: 20px;
    font-weight: 600;
    line-height: 100%;
    text-align: center;
    color: var(--blue);
}

.header__button {
    padding: 13px 35px;
    margin-left: auto;
}

.header__bottom {
    background-color: var(--header-gray);
}

.header__bottom .header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    height: 50px;
}

.header .header-catalog {
    margin-right: 20px;
    height: 100%;
}

.header .header-catalog:hover .header-catalog__main {
    background-color: transparent;
    color: var(--blue);
}

.header .header-catalog:hover .header-catalog__wrap {
    opacity: 1 !important;
    visibility: visible !important;
}

.header .header-catalog:active .header-catalog__main {
    background-color: transparent;
    color: var(--blue);
}

.header .header-catalog:active .header-catalog__wrap {
    opacity: 1 !important;
    visibility: visible !important;
}

.header .header-catalog__main {
    padding: 12px 40px;
    background-color: var(--blue);
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    text-align: left;
    color: var(--white);
    border: 1px solid var(--blue);
    -webkit-transition: color 0.3s ease, background-color 0.3s ease;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.header .header-catalog__main:hover {
    background-color: transparent;
    color: var(--blue);
}

.header .header-catalog__main:active {
    background-color: transparent;
    color: var(--blue);
}

.header .header-catalog__wrap {
    position: fixed;
    top: 142px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, top 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease, top 0.3s ease;
    z-index: 3;
}

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

.header .header-catalog__wrap .sub-category {
    padding: 48px 80px;
    display: none;
    max-height: 300px;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none !important;
    scrollbar-color: transparent transparent;
}

/* Скрываем scrollbar для Chrome, Safari и Opera */
.header .header-catalog__wrap .sub-category::-webkit-scrollbar {
    display: none;
}

.header .header-catalog__wrap .sub-category::-moz-scrollbar {
    width: 0px;
    height: 0px;
}

.header .header-catalog__wrap .sub-category.active {
    display: block;
}

.header .header-catalog__wrap .sub-category__list {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 24px;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
}

.header .header-catalog__wrap .sub-category__list li
{
    max-height: 53px;
}

.header .header-catalog__wrap .sub-category__list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    padding-right: 15px;
    border: 1px solid #e7e8ea;
    background-color: #fafafa;
    -webkit-transition: border-color 0.3s ease, background-color 0.3s ease;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    line-height: 110%;
    text-align: left;
    color: var(--black);
    border-radius: 10px;
}

.header .header-catalog__wrap .sub-category__list li a img {
    aspect-ratio: 1/1;
    width: 50px;
    /*-o-object-fit: cover;*/
    object-fit: scale-down;

    height: auto;
}

.header .header-catalog .header-catalog__left {
    position: relative;
    width: 100%;
    max-width: 330px;
    padding: 30px 0;
    background-color: var(--header-gray);
}

.header .header-catalog .header-catalog__left:after {
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    width: 300%;
    height: 100%;
    background-color: var(--header-gray);
}

.header .header-catalog__list {
    width: 100%;
    max-width: 330px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 0;
    background-color: var(--header-gray);
    max-height: 354px;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none !important;
    scrollbar-color: transparent transparent;
}

/* Скрываем scrollbar для Chrome, Safari и Opera */
.header .header-catalog__list::-webkit-scrollbar {
    display: none;
}

.header .header-catalog__list::-moz-scrollbar {
    width: 0px;
    height: 0px;
}

.header .header-catalog__list li {
    position: relative;
    padding: 10px 20px;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    z-index: 2;
    cursor: pointer;
}

.header .header-catalog__list li a {
    font-size: 16px;
    font-weight: 600;
    line-height: 137%;
    text-align: left;
    color: var(--black);
}

.header .header-menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
}

.header .header-menu__list li.current_page_item a {
    color: var(--blue);
    opacity: 1;
}

.header .header-menu__list li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    text-align: left;
    color: var(--black);
    opacity: 0.8;
    -webkit-transition: color 0.3s ease, opacity 0.3s ease;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.header .header-menu__list li a:active {
    opacity: 1;
    color: var(--blue);
}

.header .header-compare {
    margin-left: auto;
}

.header .header-compare,
.header .header-cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 3px;
    -moz-column-gap: 3px;
    column-gap: 3px;
}

.header .header-compare .text,
.header .header-cart .text {
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
    text-align: left;
    color: var(--black);
}

.header .header-compare .count,
.header .header-cart .count {
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
    text-align: left;
    color: var(--text-gray);
}

.header .header-compare svg,
.header .header-cart svg {
    width: 100%;
    max-width: 21px;
    height: 18px;
    margin-right: 5px;
}

.header._header-scroll {
    top: -92px;
}

.header._header-scroll .header-catalog__wrap {
    top: 50px;
}

.header._header-scroll._header-show {
    top: 0;
}

.header._header-scroll._header-show .header-catalog__wrap {
    top: 142px;
}

.bottom-panel {
    display: none;
}

.bottom-panel__container {
    display: -ms-grid;
    display: grid;
    height: 36px;
    padding-top: 3px;
    padding-bottom: 3px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-grid-columns: (1fr) [5];
    grid-template-columns: repeat(5, 1fr);
}

.bottom-panel__link {
    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;
    row-gap: 2px;
}

.bottom-panel__link svg {
    width: 12px;
    height: 12px;
}

.bottom-panel__link span {
    font-size: 12px;
    font-weight: 400;
    line-height: 100%;
    text-align: center;
    color: var(--black);
}

.bottom-panel__btn {
    max-width: 54px;
    margin: 0 auto;
    position: relative;
    top: -14px;
}

.bottom-panel__btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: var(--white);
    opacity: 0.2;
    z-index: 1;
}

.bottom-panel__btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 68px;
    height: 68px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: var(--white);
    opacity: 0.1;
    z-index: 1;
}

.bottom-panel__btn .line-wrap {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 54px;
    height: 54px;
    background-color: var(--blue);
    border-radius: 50%;
    z-index: 3;
}

.bottom-panel__btn .line-wrap::before {
    content: "";
    position: absolute;
    top: 17px;
    left: 50%;
    width: 38px;
    height: 2px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: var(--white);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.bottom-panel__btn .line-wrap::after {
    content: "";
    position: absolute;
    bottom: 17px;
    left: 50%;
    width: 22px;
    height: 2px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: var(--white);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.bottom-panel__btn .line-wrap .line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 2px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: var(--white);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.menu-open .bottom-panel__btn .line-wrap .line {
    width: 0;
}

.menu-open .bottom-panel__btn .line-wrap::before {
    width: 30px;
    top: calc(50% - 1px);
    -webkit-transform: translateX(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
}

.menu-open .bottom-panel__btn .line-wrap::after {
    width: 30px;
    bottom: calc(50% - 1px);
    -webkit-transform: translateX(-50%) rotate(-45deg);
    -ms-transform: translateX(-50%) rotate(-45deg);
    transform: translateX(-50%) rotate(-45deg);
}

.mobile-menu {
    display: none;
}

.mobile-menu__container {
    max-width: 250px;
    padding: 82px 0 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

.mobile-menu__title {
    margin-bottom: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 110%;
    color: var(--black-two);
    text-transform: uppercase;
}

.mobile-menu .catalog-menu {
    margin-bottom: 16px;
}

.mobile-menu .catalog-menu__base-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.mobile-menu .catalog-menu__base-link a {
    font-size: 16px;
    font-weight: 400;
    line-height: 117%;
    text-align: left;
    color: var(--black-two);
}

.mobile-menu .catalog-menu__base-link svg {
    -webkit-transition: -webkit-transform 0.3s ease 0s;
    transition: -webkit-transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.mobile-menu .catalog-menu__base-link.active svg {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.mobile-menu .catalog-menu__list {
    margin-top: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 8px;
    padding-left: 20px;
    display: none;
}

.mobile-menu .catalog-menu__list.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.mobile-menu .catalog-menu__list a {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    text-align: left;
    color: var(--black-two);
}

.mobile-menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 16px;
    margin-bottom: 30px;
}

.mobile-menu__list li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 117%;
    text-align: left;
    color: var(--black-two);
}

.mobile-menu .mobile-contacts {
    margin-top: auto;
    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;
}

.mobile-menu .mobile-contacts__title {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 300;
    line-height: 120%;
    text-align: center;
    color: var(--black-two);
    text-transform: uppercase;
}

.mobile-menu .mobile-contacts__phone-one {
    font-size: 20px;
    font-weight: 600;
    line-height: 100%;
    text-align: center;
    color: var(--black-two);
}

.mobile-menu .mobile-contacts__phone-two {
    margin: 10px 0 5px;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    text-align: center;
    color: var(--black-two);
}

.mobile-menu .mobile-contacts__mail {
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    text-align: center;
    color: var(--black-two);
}

.mobile-menu .mobile-contacts__address {
    margin-top: 18px;
}

.mobile-menu .mobile-contacts__address-title {
    margin-bottom: 3px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 120%;
    text-align: center;
    color: var(--black-two);
}

.mobile-menu .mobile-contacts__address-text {
    max-width: 250px;
    font-size: 14px;
    font-weight: 400;
    line-height: 110%;
    text-align: center;
    color: var(--black-two);
}

.menu-open .mobile-menu {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.footer {
    position: relative;
    z-index: 3;
    background-color: var(--blue);
}

.footer__top {
    padding-top: 100px;
    padding-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.footer__left {
    width: 100%;
    max-width: 200px;
}

.footer__logo {
    width: 100%;
    max-width: 200px;
    margin-bottom: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer__logo-img {
    width: 100%;
    max-width: 100%;
}

.footer__phone-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer__phone-wrap svg {
    min-width: 50px;
    height: 50px;
}

.footer__phone-wrap div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.footer__phone-one {
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    text-align: left;
    color: var(--white);
}

.footer__callback {
    margin-top: 5px;
    font-size: 14px;
    font-weight: 700;
    line-height: 100%;
    text-align: left;
    color: var(--text-gray);
}

.footer__right {
    max-width: 880px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [4];
    grid-template-columns: repeat(4, 1fr);
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
}

.footer__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    line-height: 100%;
    text-align: left;
    color: var(--white);
}

.footer .footer-menu__list {
    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: start;
    -ms-flex-align: start;
    align-items: flex-start;
    row-gap: 12px;
}

.footer .footer-menu__list li a {
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    text-align: left;
    color: var(--text-gray);
}

.footer__address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    text-align: left;
    color: var(--text-gray);
}

.footer__address svg {
    width: 15px;
    min-width: 15px;
    height: 15px;
}

.footer__work {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 5px;
}

.footer__work-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 120%;
    text-align: left;
    color: var(--white);
}

.footer__work-time {
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    text-align: left;
    color: var(--text-gray);
}

.footer__phones {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.footer__phones svg {
    min-width: 15px;
    width: 15px;
    height: 15px;
}

.footer__phones-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 5px;
}

.footer__phones-wrap a:first-child {
    font-size: 14px;
    font-weight: 700;
    line-height: 120%;
    text-align: left;
    color: var(--white);
}

.footer__phones-wrap a {
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    text-align: left;
    color: var(--text-gray);
}

.footer__mail {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    text-align: left;
    color: var(--text-gray);
}

.footer__mail svg {
    min-width: 15px;
    width: 15px;
    height: 15px;
}

.footer__bottom {
    padding: 40px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    border-top: 1px solid var(--text-gray);
}

.footer__copy {
    font-size: 12px;
    font-weight: 400;
    line-height: 120%;
    text-align: left;
    color: var(--text-gray);
}

.footer__policy {
    font-size: 12px;
    font-weight: 400;
    line-height: 120%;
    text-align: left;
    color: var(--text-gray);
}

.main-welcome {
    background-color: var(--white);
    padding-bottom: 125px;
}

.main-welcome__container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [4];
    grid-template-columns: repeat(4, 1fr);
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    row-gap: 24px;
}

.main-welcome__slider {
    position: relative;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 3;
    grid-column-end: 4;
    border-radius: 10px;
    overflow: hidden;
}

.main-welcome__slider .swiper-button-prev,
.main-welcome__slider .swiper-button-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.main-welcome__slider .swiper-button-prev {
    left: 3px;
}

.main-welcome__slider .swiper-button-next {
    right: 3px;
}

.main-welcome__slider .swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.main-welcome__slider .swiper-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid var(--blue);
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.main-welcome__slider .swiper-pagination .swiper-pagination-bullet:active {
    background-color: var(--blue);
}

.main-welcome__slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--blue);
}

.main-welcome .main-welcome-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 100%;
    max-height: 430px;
    background-color: var(--light-blue-bg);
    border-radius: 10px;
    overflow: hidden;
}

.main-welcome .main-welcome-slide__wrap {
    width: 100%;
    height: 100%;
    padding: 80px 10px 80px 80px;
    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: start;
    -ms-flex-align: start;
    align-items: flex-start;
    row-gap: 30px;
}

.main-welcome .main-welcome-slide__title {
    font-family: "Montserrat";
    font-size: 36px;
    font-weight: 700;
    line-height: 138%;
    text-align: left;
    color: var(--black);
    text-transform: uppercase;
}

.main-welcome .main-welcome-slide__link {
    margin-top: auto;
}

.main-welcome .main-welcome-slide__img {
    width: 100%;
    height: 100%;
    max-width: 440px;
    border-radius: 10px;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
}

.main-welcome__right {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: (210px) [2];
    grid-template-rows: repeat(2, 210px);
    row-gap: 10px;
}

.main-welcome .main-welcome-item {
    position: relative;
    padding: 30px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 35px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    border: 1px solid var(--border-gray);
    border-radius: 10px;
    background: var(--white);
    -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.0509803922);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.0509803922);
    -webkit-transition: border-color 0.3s ease, background-color 0.3s ease,
        -webkit-box-shadow 0.3s ease;
    transition: border-color 0.3s ease, background-color 0.3s ease,
        -webkit-box-shadow 0.3s ease;
    transition: border-color 0.3s ease, background-color 0.3s ease,
        box-shadow 0.3s ease;
    transition: border-color 0.3s ease, background-color 0.3s ease,
        box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
    overflow: hidden;
}

.main-welcome .main-welcome-item:hover {
    background-color: var(--light-blue);
    -webkit-box-shadow: 0px 0px 6px 0px var(--blue25);
    box-shadow: 0px 0px 6px 0px var(--blue25);
    border-color: var(--blue);
}

.main-welcome .main-welcome-item__title {
    position: relative;
    max-width: 181px;
    font-family: "Montserrat";
    font-size: 18px;
    font-weight: 700;
    line-height: 150%;
    text-align: left;
    text-transform: uppercase;
    color: var(--black);
    z-index: 2;
}

.main-welcome .main-welcome-item__link {
    position: relative;
    margin-top: auto;
    z-index: 2;
}

.main-welcome .main-welcome-item__img {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -65px;
    max-width: 140px;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 2;
}

.main-categories {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.main-categories__container {
    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;
}

.main-categories__top-title {
    color: var(--blue);
}

.main-categories__title {
    color: var(--black);
}

.main-categories__list {
    width: 100%;
    margin-bottom: 50px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    row-gap: 24px;
}

.main-categories .main-categories-item {
    position: relative;
    background-color: var(--white);
    border: 1px solid var(--white);
    border-radius: 10px;
    padding: 40px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: border-color 0.3s ease, background-color 0.3s ease,
        -webkit-box-shadow 0.3s ease;
    transition: border-color 0.3s ease, background-color 0.3s ease,
        -webkit-box-shadow 0.3s ease;
    transition: border-color 0.3s ease, background-color 0.3s ease,
        box-shadow 0.3s ease;
    transition: border-color 0.3s ease, background-color 0.3s ease,
        box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
    overflow: hidden;
}

.main-categories .main-categories-item:hover {
    background-color: var(--light-blue);
    -webkit-box-shadow: 0px 0px 6px 0px var(--blue25);
    box-shadow: 0px 0px 6px 0px var(--blue25);
    border-color: var(--blue);
}

.main-categories .main-categories-item__img {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -30px;
    aspect-ratio: 1/1;
    max-width: 196px;
    -o-object-fit: cover;
    object-fit: cover;
    height: auto;
}

.main-categories .main-categories-item__wrap {
    width: 100%;
    position: relative;
    max-width: 175px;
    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: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-left: auto;
    row-gap: 35px;
    z-index: 2;
    height: auto;
}

.main-categories .main-categories-item__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 110%;
    text-align: left;
    color: var(--black);
}

.main-categories .main-categories-item__link {
    margin-top: auto;
}

.recomended {
    padding: 100px 0;
    background-color: var(--white);
}

.recomended__container {
    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;
}

.recomended__top-title {
    color: var(--blue);
}

.recomended__title {
    color: var(--black);
}

.recomended__slider-wrap {
    position: relative;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 50px;
}

.recomended__slider {
    min-width: 0;
    padding-bottom: 2px;
}

.recomended__wrapper {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
}

.recomended__slide .product-list-item {
    max-width: 100%;
    height: 100%;
}

.recomended .swiper-button-prev,
.recomended .swiper-button-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.recomended .swiper-button-prev {
    left: 2px;
}

.recomended .swiper-button-next {
    right: 2px;
}

.catalog-page .recomended {
    background-color: var(--light-gray);
}

.product-list-item {
    width: 100%;
    max-width: 306px;
    position: relative;
    padding: 20px;
    border: 1px solid var(--border-gray);
    border-radius: 10px;
    -webkit-transition: border-color 0.3s ease;
    transition: border-color 0.3s ease;
    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;
    background-color: var(--white);
}

.product-list-item__compare {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 14px;
    height: 18px;
}

.product-list-item__compare svg {
    width: 100%;
    max-width: 14px;
}

.product-list-item__compare svg path {
    stroke: var(--text-gray);
}

.product-list-item__compare.active svg path {
    stroke: var(--blue);
}

.product-list-item__compare-remove {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 20px;
    height: 20px;
}

.product-list-item__compare-remove svg {
    width: 100%;
    max-width: 20px;
}

.product-list-item__compare-remove svg path {
    fill: var(--text-gray);
    -webkit-transition: fill 0.3s ease;
    transition: fill 0.3s ease;
}

.product-list-item__title {
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    text-align: center;
    color: var(--black);
}

.product-list-item__code {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    text-align: center;
    color: var(--text-gray);
}

.product-list-item__img {
    margin-top: auto;
    width: 100%;
    max-width: 266px;
    height: auto;
    aspect-ratio: 1/1;
    -o-object-fit: contain;
    object-fit: contain;
}

.product-list-item__bottom {
    margin-top: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    width: 100%;
}

.product-list-item__prices {
    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: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.product-list-item__prices .old-price {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    text-align: left;
    color: var(--text-gray);
}

.product-list-item__prices .old-price::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--text-gray);
}

.product-list-item__prices .price {
    font-size: 22px;
    font-weight: 400;
    line-height: 100%;
    text-align: left;
    color: var(--black);
}

.product-list-item__btn {
    padding: 10px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    border: 1px solid var(--blue);
    border-radius: 10px;
    background-color: var(--blue);
    -webkit-transition: border-color 0.3s ease, background-color 0.3s ease;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.product-list-item__btn svg {
    width: 25px;
    height: 24px;
}

.product-list-item__btn svg path {
    fill: var(--white);
    -webkit-transition: fill 0.3s ease;
    transition: fill 0.3s ease;
}

.product-list-item__btn span {
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    text-align: left;
    color: var(--white);
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.product-list-item__btn:active {
    background-color: var(--white);
}

.product-list-item__btn:active svg path {
    fill: var(--blue);
}

.product-list-item__btn:active span {
    color: var(--blue);
}

.no-webp .advantages-block {
    background-image: url(../image/advantages-block-bg.jpg);
}

.advantages-block {
    padding: 100px 0;
    background-color: var(--blue);
}

.advantages-block__container {
    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;
}

.advantages-block__top-title {
    color: var(--white);
}

.advantages-block__title {
    color: var(--white);
}

.advantages-block__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [3];
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    row-gap: 24px;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    width: 100%;
}

.advantages-block .advantages-block-item {
    padding: 30px;
    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: start;
    -ms-flex-align: start;
    align-items: flex-start;
    row-gap: 15px;
    background-color: var(--white);
    border-radius: 10px;
}

.advantages-block .advantages-block-item__icon {
    width: 100%;
    max-width: 38px;
}

.advantages-block .advantages-block-item__title {
    max-width: 230px;
    font-size: 18px;
    font-weight: 700;
    line-height: 117%;
    text-align: left;
}

.advantages-block .advantages-block-item__text {
    margin-top: auto;
    font-size: 16px;
    font-weight: 400;
    line-height: 117%;
    text-align: left;
}

.about-block {
    padding: 100px 0;
    background-color: var(--white);
}

.about-block__container {
    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;
}

.about-block__top-title {
    color: var(--blue);
}

.about-block__title {
    color: var(--black);
}

.about-block__wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    row-gap: 24px;
    width: 100%;
}

.about-block__left {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
}

.about-block__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 137%;
    text-align: left;
}

.about-block__img {
    max-width: 635px;
}

.catalog-page .about-block .about-block__link {
    display: none;
}

.last-news {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.last-news__container {
    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;
}

.last-news__top-title {
    color: var(--blue);
}

.last-news__title {
    color: var(--black);
}

.last-news__list {
    width: 100%;
    margin-bottom: 50px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    row-gap: 24px;
}

.last-news .last-news-item {
    -webkit-box-shadow: 0px 0px 16px 0px rgba(80, 79, 79, 0.1019607843);
    box-shadow: 0px 0px 16px 0px rgba(80, 79, 79, 0.1019607843);
    border-radius: 10px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.last-news .last-news-item__img {
    width: 100%;
    max-width: 350px;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.last-news .last-news-item__wrap {
    padding: 20px;
    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: start;
    -ms-flex-align: start;
    align-items: flex-start;
    row-gap: 15px;
    background-color: var(--white);
    min-width: 300px;
}

.last-news .last-news-item__date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
    text-align: left;
    color: var(--black);
}

.last-news .last-news-item__date svg {
    width: 13px;
    height: 14px;
}

.last-news .last-news-item__title {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 700;
    line-height: 110%;
    text-align: left;
    color: var(--black);
}

.last-news .last-news-item__text {
    margin-top: auto;
    font-size: 14px;
    font-weight: 400;
    line-height: 110%;
    text-align: left;
    color: var(--black);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-box;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    box-orient: vertical;
}

.form-block {
    position: relative;
    padding: 100px 0;
    background-color: var(--white);
}

.form-block::after {
    content: "";
    position: absolute;
    right: -76px;
    bottom: -195px;
    width: 564px;
    height: 564px;
    background-color: var(--light-gray);
    border-radius: 50%;
    z-index: 1;
}

.form-block__container {
    position: relative;
    z-index: 3;
}

.form-block__title {
    margin-bottom: 0;
    color: var(--blue);
    text-align: left;
}

.form-block__text {
    margin: 20px 0 30px;
    font-size: 16px;
    font-weight: 400;
    line-height: 117%;
    text-align: left;
    color: var(--text-gray);
}

.form-block .form-block-form {
    width: 100%;
    max-width: 965px;
}

.form-block .form-block-form__wrap {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 24px;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    row-gap: 24px;
}

.form-block .form-block-form__input-wrap {
    position: relative;
}

.form-block .form-block-form__input-wrap .form__error {
    position: absolute;
    bottom: -15px;
    left: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 100%;
    color: red;
    display: none !important;
}

.form-block .form-block-form__input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--blue);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    color: var(--black);
}

.form-block .form-block-form__input::-webkit-input-placeholder {
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    color: var(--text-gray);
}

.form-block .form-block-form__input::-moz-placeholder {
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    color: var(--text-gray);
}

.form-block .form-block-form__input:-ms-input-placeholder {
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    color: var(--text-gray);
}

.form-block .form-block-form__input::-ms-input-placeholder {
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    color: var(--text-gray);
}

.form-block .form-block-form__input::placeholder {
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    color: var(--text-gray);
}

.form-block .form-block-form__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
}

.form-block .form-block-form__button {
    width: 100%;
    max-width: 196px;
}

.form-block .form-block-form__policy {
    max-width: 636px;
    font-size: 12px;
    font-weight: 400;
    line-height: 130%;
    text-align: left;
    color: var(--text-gray);
}

.form-block__img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 488px;
    aspect-ratio: 488/323;
    z-index: 2;
}

@media (max-width: 1200px) {
    .page-welcome {
        padding-top: 35px;
    }
}

.page-welcome__wrap {
    position: relative;
    /* overflow: hidden; */
    min-height: 280px;
    padding: 20px 40px 50px;
    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: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    row-gap: 30px;
    background-color: var(--header-gray);
    border-radius: 10px;
}

.page-welcome__title {
    position: relative;
    width: 100%;
    max-width: 330px;
    font-family: "Montserrat";
    font-size: 32px;
    font-weight: 700;
    line-height: 122%;
    text-align: left;
    color: #1a2f47;
    text-transform: uppercase;
    z-index: 2;
}

.page-welcome__img-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 880px;
    height: 100%;
    z-index: 1;
}

.page-welcome__img-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        color-stop(2.52%, var(--header-gray)),
        color-stop(47.06%, rgba(217, 217, 217, 0))
    );
    background: linear-gradient(
        90deg,
        var(--header-gray) 2.52%,
        rgba(217, 217, 217, 0) 47.06%
    );
}

.page-welcome__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.catalog-categories {
    padding: 100px 0;
    background-color: var(--white);
}

.catalog-categories__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [12];
    grid-template-columns: repeat(12, 1fr);
    row-gap: 24px;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
}

.catalog-categories .catalog-categories-item {
    position: relative;
    background-color: var(--light-gray);
    border: 1px solid var(--border-gray);
    border-radius: 10px;
    padding: 30px 20px 10px;
    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;
    row-gap: 40px;
    -webkit-transition: border-color 0.3s ease, background-color 0.3s ease,
        row-gap 0.3s ease, -webkit-box-shadow 0.3s ease;
    transition: border-color 0.3s ease, background-color 0.3s ease,
        row-gap 0.3s ease, -webkit-box-shadow 0.3s ease;
    transition: border-color 0.3s ease, background-color 0.3s ease,
        box-shadow 0.3s ease, row-gap 0.3s ease;
    transition: border-color 0.3s ease, background-color 0.3s ease,
        box-shadow 0.3s ease, row-gap 0.3s ease, -webkit-box-shadow 0.3s ease;
    overflow: hidden;
}

.catalog-categories .catalog-categories-item:hover {
    background-color: var(--light-blue);
    -webkit-box-shadow: 0px 0px 6px 0px var(--blue25);
    box-shadow: 0px 0px 6px 0px var(--blue25);
    border-color: var(--blue);
}

.catalog-categories
    .catalog-categories-item:hover
    .catalog-categories-item__link {
    opacity: 1;
    visibility: visible;
}

.catalog-categories
    .catalog-categories-item:hover
    .catalog-categories-item__title {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}

.catalog-categories
    .catalog-categories-item:hover
    .catalog-categories-item__img {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}

.catalog-categories .catalog-categories-item:nth-child(4n + 4) {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 3;
    grid-column-end: 4;
}

.catalog-categories .catalog-categories-item:nth-child(4n + 5) {
    -ms-grid-column: 4;
    grid-column-start: 4;
    -ms-grid-column-span: 3;
    grid-column-end: 7;
}

.catalog-categories .catalog-categories-item:nth-child(4n + 6) {
    -ms-grid-column: 7;
    grid-column-start: 7;
    -ms-grid-column-span: 3;
    grid-column-end: 10;
}

.catalog-categories .catalog-categories-item:nth-child(4n + 7) {
    -ms-grid-column: 10;
    grid-column-start: 10;
    -ms-grid-column-span: 3;
    grid-column-end: 13;
}

.catalog-categories .catalog-categories-item:nth-child(1) {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 4;
    grid-column-end: 5;
}

.catalog-categories .catalog-categories-item:nth-child(2) {
    -ms-grid-column: 5;
    grid-column-start: 5;
    -ms-grid-column-span: 4;
    grid-column-end: 9;
}

.catalog-categories .catalog-categories-item:nth-child(3) {
    -ms-grid-column: 9;
    grid-column-start: 9;
    -ms-grid-column-span: 4;
    grid-column-end: 13;
}

.catalog-categories .catalog-categories-item__img {
    width: 100%;
    max-width: 196px;
    aspect-ratio: 196/205;
    height: auto;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.catalog-categories .catalog-categories-item__wrap {
    width: 100%;
    max-width: 245px;
    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;
    row-gap: 20px;
    height: 100%;
    padding-bottom: 15px;
}

.catalog-categories .catalog-categories-item__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 117%;
    text-align: center;
    color: var(--black);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.catalog-categories .catalog-categories-item__link {
    margin-top: auto;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.text-block {
    padding: 100px 0;
    background-color: var(--white);
}

.text-block__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 100px;
}

.text-block__top-title {
    color: var(--blue);
}

.text-block__title-big {
    color: var(--black);
}

.text-block__img {
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.text-block__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 15px;
}

.text-block__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 117%;
    text-align: left;
    color: var(--black);
}

.text-block__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 166%;
    text-align: left;
    color: var(--text-gray);
}

.text-block__text .blue {
    color: var(--blue);
}

.text-block__text ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.text-block__text ul li::before {
    content: "";
    margin: 13px 10px 0;
    display: block;
    min-width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: var(--text-gray);
}

.text-block__text a {
    text-decoration: underline;
}

.text-block__wrap-left {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
}

.text-block__wrap-left .text-block__img {
    margin-right: auto;
}

.text-block__wrap-right {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
}

.text-block__wrap-right .text-block__img {
    margin-left: auto;
}

.news-page {
    padding: 100px 0;
    background-color: var(--white);
}

.news-page__container {
    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;
    row-gap: 50px;
}

.news-page__list {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [3];
    grid-template-columns: repeat(3, 1fr);
    row-gap: 24px;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
}

.news-page .news-page-item {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--white);
    -webkit-transition: border-color 0.3s ease, background-color 0.3s ease,
        -webkit-box-shadow 0.3s ease;
    transition: border-color 0.3s ease, background-color 0.3s ease,
        -webkit-box-shadow 0.3s ease;
    transition: border-color 0.3s ease, background-color 0.3s ease,
        box-shadow 0.3s ease;
    transition: border-color 0.3s ease, background-color 0.3s ease,
        box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.news-page .news-page-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;
}

.news-page .news-page-item__img {
    aspect-ratio: 416/230;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.news-page .news-page-item__wrap {
    padding: 15px 10px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
}

.news-page .news-page-item__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 117%;
    text-align: left;
}

.news-page .news-page-item__short {
    font-size: 16px;
    font-weight: 400;
    line-height: 117%;
    text-align: left;
    color: var(--gray);
    opacity: 0.7;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-box;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    box-orient: vertical;
}

.news-page #loadmore {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.news-page #loadmore.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.news-content {
    padding: 100px 0;
    background-color: var(--white);
}

.news-content img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 40px auto;
    max-width: 1080px;
    border-radius: 10px 10px 0px 0px;
    overflow: hidden;
    min-height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
}

.news-content h1,
.news-content h2,
.news-content h3,
.news-content h4,
.news-content h5,
.news-content h6 {
    font-size: 32px;
    font-weight: 700;
    line-height: 117%;
    text-align: left;
    color: var(--black);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.news-content p,
.news-content li {
    font-size: 16px;
    font-weight: 400;
    line-height: 117%;
    text-align: left;
    color: var(--light-black);
}

.contact {
    padding: 100px 0;
    background-color: var(--white);
}

.contact__list {
    margin-bottom: 50px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    row-gap: 24px;
}

.contact .contact-item {
    padding: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
    -webkit-box-shadow: 0px 0px 16px 0px rgba(80, 79, 79, 0.1019607843);
    box-shadow: 0px 0px 16px 0px rgba(80, 79, 79, 0.1019607843);
    background-color: var(--white);
}

.contact .contact-item svg {
    width: 60px;
    height: 60px;
    min-width: 60px;
}

.contact .contact-item__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
}

.contact .contact-item__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 110%;
    text-align: left;
    color: var(--black);
}

.contact .contact-item__text {
    max-width: 180px;
    font-size: 15px;
    font-weight: 400;
    line-height: 120%;
    text-align: left;
    color: var(--text-gray);
}

.contact__wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    row-gap: 24px;
    width: 100%;
}

.contact__wrap:has([data-none]) {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
}

.contact__wrap [data-none] {
    display: none;
}

.contact__map {
    width: 100%;
    max-width: 100%;
    min-height: 311px;
}

.contact__col {
    font-size: 16px;
    font-weight: 400;
    line-height: 135%;
    text-align: left;
    color: var(--light-black);
}

.contact__col b {
    font-weight: 700;
    color: var(--black);
}

.contact__col b:first-child {
    font-size: 18px;
}

.category-page .recomended {
    background-color: var(--light-gray);
}

.category-page .text-block__text {
    font-size: 16px;
    line-height: 135%;
}

.category-page .text-block__container {
    row-gap: 50px;
}

.category-wrap {
    position: relative;
    padding: 100px 0;
    background-color: var(--white);
}

.category-wrap__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
}

.category-wrap__left {
    width: 100%;
    max-width: 306px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 24px;
}

.category-wrap .left-categories__title {
    padding: 18px;
    background-color: var(--blue);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 10px 10px 0px 0px;
    border: 1px solid var(--border-gray);
    cursor: pointer;
}

.category-wrap .left-categories__title span {
    font-size: 18px;
    font-weight: 700;
    line-height: 21px;
    text-align: left;
    color: var(--white);
    text-transform: uppercase;
}

.category-wrap .left-categories__title svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.category-wrap .left-categories__title.active svg {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.category-wrap .left-categories__list {
    overflow: hidden;
    -webkit-transition: height 0.3s ease;
    transition: height 0.3s ease;
}

.category-wrap .left-categories__link {
    border: 1px solid var(--border-gray);
    border-top: none;
    padding: 8px 15px;
    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;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 500;
    line-height: 110%;
    text-align: left;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.category-wrap .left-categories__link span {
    font-weight: 400 !important;
    color: var(--text-gray);
}

.category-wrap .left-categories__link:active {
    color: var(--blue);
}

.category-wrap__right {
    width: 100%;
}

.category-wrap .sub-categories {
    width: 100%;
    margin-bottom: 50px;
}

.category-wrap .sub-categories__list {
    width: 100%;
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(306px, 1fr));
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 6px;
}

.category-wrap .sub-categories .sub-categories-item__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 26px;
    -moz-column-gap: 26px;
    column-gap: 26px;
    padding-right: 15px;
    border: 1px solid #e7e8ea;
    background-color: #fafafa;
    -webkit-transition: border-color 0.3s ease, background-color 0.3s ease;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    border-radius: 10px;
    padding: 10px;
}

.category-wrap .sub-categories .sub-categories-item__img {
    aspect-ratio: 1/1;
    width: 75px;
    -o-object-fit: cover;
    object-fit: cover;
}

.category-wrap .sub-categories .sub-categories-item__title {
    font-size: 16px;
    font-weight: 500;
    line-height: 110%;
    text-align: left;
    color: var(--black);
}

.category-wrap .sort {
    margin: 0 0 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
}

.category-wrap .sort__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    text-align: left;
    color: var(--black);
}

.category-wrap .sort__select {
    font-family: "Roboto", sans-serif;
    background-color: transparent;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    text-align: left;
    color: var(--black);
}

.category-wrap .products {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
}

.category-wrap .products .product-list-item {
    max-width: 100%;
}

.cart {
    position: relative;
    padding: 100px 0;
    background-color: var(--white);
}

.cart__title {
    margin-bottom: 50px;
    font-size: 32px;
    font-weight: 600;
    line-height: 100%;
    color: var(--black);
    text-align: center;
}

.cart__empty {
    margin: 100px auto;
    width: 100%;
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
    font-size: 25px;
    line-height: 115%;
    color: var(--blue);
}

.cart__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
}

.cart .cart-products {
    width: 100%;
}

.cart .cart-products__top {
    margin-bottom: 20px;
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 3fr 1fr 1.5fr;
    grid-template-columns: 3fr 1fr 1.5fr;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    padding: 10px 0;
    border: 1px solid #e0e4e8;
    background: var(--header-gray);
    border-radius: 10px;
}

.cart .cart-products__top span {
    font-family: Roboto;
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    text-align: left;
    color: #999999;
}

.cart .cart-products__top span:first-child {
    padding-left: 20px;
}

.cart .cart-products__top span:nth-child(2) {
    text-align: center;
}

.cart .cart-products__top span:last-child {
    padding-right: 20px;
}

.cart .cart-products__top + .cart-products-item {
    border: none !important;
}

.cart .cart-products .cart-products-item {
    position: relative;
    padding: 20px 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 3fr 1fr 1.5fr;
    grid-template-columns: 3fr 1fr 1.5fr;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    border-top: 1px solid #cecece;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cart .cart-products .cart-products-item:first-child {
    border: none;
}

.cart .cart-products .cart-products-item__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cart .cart-products .cart-products-item__img {
    width: 100%;
    max-width: 69px;
    max-height: 69px;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 1/1;
    border-radius: 10px;
    overflow: hidden;
}

.cart .cart-products .cart-products-item__name {
    max-width: 306px;
    margin-bottom: 5px;
    display: block;
    font-size: 18px;
    font-weight: 400;
    line-height: 115%;
    text-align: left;
    color: var(--black);
}

.cart .cart-products .cart-products-item__parthnumb {
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    text-align: center;
    color: var(--text-gray);
}

.cart .cart-products .cart-products-item__quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 8px;
    -moz-column-gap: 8px;
    column-gap: 8px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.cart .cart-products .cart-products-item__btn {
    width: 24px;
    height: 24px;
    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;
}

.cart .cart-products .cart-products-item__btn svg path {
    -webkit-transition: fill 0.3s ease;
    transition: fill 0.3s ease;
}

.cart .cart-products .cart-products-item__btn:active svg path {
    fill: var(--blue);
}

.cart .cart-products .cart-products-item__input {
    width: 40px;
    height: 40px;
    text-align: center;
    border: 1px solid #e0e4e8;
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    color: var(--black);
    border-radius: 10px;
    pointer-events: none;
}

.cart .cart-products .cart-products-item__price-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cart .cart-products .cart-products-item__sum {
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
    text-align: left;
    color: var(--black);
}

.cart .cart-products .cart-products-item__remove {
    width: 24px;
    height: 24px;
    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;
}

.cart .cart-products .cart-products-item__remove svg path {
    -webkit-transition: fill 0.3s ease;
    transition: fill 0.3s ease;
}

.cart .cart-products .cart-products-item__remove:active svg path {
    fill: var(--blue);
}

.cart .cart-products__noprice {
    margin: 25px 0 20px;
    width: 100%;
    display: -ms-grid;
    display: grid;
    padding: 10px 20px;
    border: 1px solid #e0e4e8;
    background: var(--header-gray);
    border-radius: 10px;
}

.cart .cart-products__noprice span {
    font-family: Roboto;
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    text-align: left;
    color: #999999;
}

.cart .cart-products__noprice + .cart-products-item {
    border: none !important;
}

.cart .cart-result {
    padding: 30px;
    width: 100%;
    max-width: 415px;
    background: var(--header-gray);
    border: 1px solid var(--border-gray);
    border-radius: 10px;
}

.cart .cart-result__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;
    text-align: left;
    color: var(--black);
    margin-bottom: 20px;
}

.cart .cart-result__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 15px;
}

.cart .cart-result__item .right {
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    text-align: right;
    color: var(--black);
    font-weight: 600;
}

.cart .cart-result__item .left {
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    text-align: left;
    color: var(--text-gray);
}

.cart .cart-result__sum {
    padding: 20px 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 115%;
    text-align: center;
    color: var(--black);
    border-top: 1px solid var(--border-gray);
}

.cart .cart-result__back {
    padding: 17px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    text-align: center !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 330px;
    margin: 0 auto;
}

.cart .cart-result__buy {
    max-width: 330px;
    margin: 20px auto 0;
    width: 100%;
    padding: 13px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    border: 1px solid var(--blue);
    border-radius: 10px;
    background-color: var(--blue);
    -webkit-transition: border-color 0.3s ease, background-color 0.3s ease;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.cart .cart-result__buy svg {
    width: 25px;
    height: 24px;
}

.cart .cart-result__buy svg path {
    fill: var(--white);
    -webkit-transition: fill 0.3s ease;
    transition: fill 0.3s ease;
}

.cart .cart-result__buy span {
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    text-align: left;
    color: var(--white);
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.cart .cart-result__buy:active {
    background-color: var(--white);
}

.cart .cart-result__buy:active svg path {
    fill: var(--blue);
}

.cart .cart-result__buy:active span {
    color: var(--blue);
}

.cart .cart-result__text {
    padding-top: 20px;
    max-width: 290px;
    margin: 0 auto;
    text-align: center;
    border-top: 1px solid var(--border-gray);
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    text-align: center;
    color: var(--text-gray);
}

.cart .cart-result__text span {
    color: var(--blue);
    text-decoration: underline;
}

.cart .cart-result__text a {
    color: var(--blue);
    text-decoration: underline;
}

.cart .hidden {
    display: none;
}

.compare .no-result {
    width: 100%;
    max-width: 600px;
    text-align: center;
    margin: 100px auto;
    font-size: 25px;
    color: var(--blue);
}

.compare__title {
    margin-bottom: 50px;
    font-size: 32px;
    font-weight: 600;
    line-height: 100%;
    color: var(--black);
    text-align: center;
}

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

.compare__left {
    width: 318px;
    min-width: 318px;
    padding-right: 23px;
}

.compare__btns {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
}

.compare__btn {
    width: 100%;
}

.compare__btn.active {
    background-color: var(--blue) !important;
    color: var(--white) !important;
}

.compare__right {
    position: relative;
    min-width: 0;
}

.compare__right .swiper-button-prev {
    position: absolute;
    top: 50%;
    left: -15px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.compare__right .swiper-button-next {
    position: absolute;
    top: 50%;
    right: -15px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.compare .compare-prod__wrapper {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
}

.compare .compare-prod__slide .product-list-item {
    height: 100%;
}

.compare__wrap {
    margin-top: 20px;
    padding-bottom: 100px;
}

.compare__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: var(--header-gray);
    border: 1px solid #e0e4e8;
}

.compare__row:nth-child(even) {
    background-color: var(--white);
}

.compare__row.hidden {
    display: none;
}

.compare .chars-title {
    padding: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 105%;
    color: #5b5b5b;
}

.compare .compare-chars__slider {
    pointer-events: none;
}

.compare .compare-chars__slide .compare-chars-val {
    width: 100%;
    width: 306px;
    padding: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 105%;
    color: #5b5b5b;
}

.compare .compare-chars__slide .compare-chars-val .mob-title {
    display: none;
}

.product-page .recomended {
    background-color: var(--light-gray);
}

.product-page .main-block {
    padding-top: 50px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    row-gap: 24px;
}

.product-page .main-block__left {
    position: relative;
    max-width: 100%;
    min-width: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 15px;
}

.product-page .main-block__slider {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-gray);
}

.product-page .main-block__slider .swiper-slide {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

/*.product-page .main-block__slider .swiper-slide img {*/
/*    aspect-ratio: 636/570;*/
/*    width: 100%;*/
/*    max-width: 100%;*/
/*    -o-object-fit: cover;*/
/*    object-fit: cover;*/
/*    height: auto;*/
/*}*/

/* Слайдер */
.product-page .main-block__slider {
    width: 100%;
    max-width: 634px;
    margin: 0 auto;
}

/* Контейнер слайда */
.product-page .main-block__slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}

/* Изображения */
.product-page .main-block__slider .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    height: auto;
    width: auto;
}

.product-page .main-block__slider-thumb .swiper-slide {
    width: 100%;
    max-width: 80px;
    border: 1px solid var(--border-gray);
    border-radius: 10px;
    overflow: hidden;
    -webkit-transition: border-color 0.3s ease;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

.product-page
    .main-block__slider-thumb
    .swiper-slide.swiper-slide-thumb-active {
    border-color: var(--blue);
}

.product-page .main-block__slider-thumb .swiper-slide img {
    aspect-ratio: 80/60;
    -o-object-fit: cover;
    object-fit: cover;
    max-width: 100%;
    height: auto;
}

.product-page .main-block__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.product-page__compare {
    position: absolute;
    top: 20px;
    right: 15px;
    z-index: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.product-page__compare span {
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
    text-align: left;
    color: var(--black);
}

.product-page__compare svg {
    width: 100%;
    max-width: 14px;
}

.product-page__compare svg path {
    stroke: var(--text-gray);
}

.product-page__compare.active svg path {
    stroke: var(--blue);
}

.product-page__title-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    margin-bottom: 10px;
}

.product-page__title {
    width: 100%;
    max-width: 525px;
    font-size: 32px;
    font-weight: 700;
    line-height: 119%;
    letter-spacing: -0.8000000119px;
    text-align: left;
    color: var(--black);
}

.product-page__dev-logo {
    width: 100%;
    max-width: 86px;
    aspect-ratio: 86/59;
    -o-object-fit: contain;
    object-fit: contain;
}

.product-page__vendor-code {
    margin: 10px 0 20px;
    font-size: 14px;
    font-weight: 400;
    line-height: 135%;
    color: var(--text-gray);
}

.product-page__short-desc {
    max-width: 525px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 135%;
    letter-spacing: -0.8000000119px;
    text-align: left;
    color: var(--black);
}

.product-page .short-chars {
    width: 100%;
    max-width: 525px;
    margin-bottom: 20px;
}

.product-page .short-chars__title {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.8000000119px;
    text-align: left;
    color: var(--black);
}

.product-page .short-chars__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
}

.product-page .short-chars__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    width: 100%;
}

.product-page .short-chars__item span {
    font-size: 16px;
    font-weight: 400;
    line-height: 175%;
    text-align: left;
    color: var(--black);
}

.product-page .short-chars__link {
    font-size: 16px;
    font-weight: 400;
    line-height: 175%;
    text-align: left;
    color: var(--blue);
    text-decoration: underline;
}

.product-page .delivery {
    margin-bottom: 25px;
}

.product-page .delivery__title {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.8000000119px;
    text-align: left;
    color: var(--black);
}

.product-page .delivery__list {
    padding-left: 20px;
    list-style-type: disc;
}

.product-page .delivery__item {
    list-style-type: disc;
    font-size: 16px;
    font-weight: 400;
    line-height: 155%;
    text-align: left;
    color: var(--black);
}

.product-page .actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    padding: 10px 20px;
    background-color: var(--header-gray);
    border-radius: 10px;
}

.product-page .actions__prices {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.product-page .actions__prices .old-price {
    font-size: 16px;
    font-weight: 400;
    line-height: 110%;
    text-align: left;
    color: var(--text-gray);
    text-decoration: line-through;
}

.product-page .actions__prices .price {
    font-size: 30px;
    font-weight: 400;
    line-height: 100%;
    text-align: left;
    color: var(--black);
}

.product-page .actions .quantity {
    width: 100%;
    max-width: 86px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 10px;
    border: 1px solid var(--blue);
    overflow: hidden;
    background-color: var(--white);
}

.product-page .actions .quantity__input {
    max-width: 60px;
    background-color: transparent;
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    text-align: center;
    color: var(--blue);
    pointer-events: none;
}

.product-page .actions .quantity__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.product-page .actions .quantity__btn {
    width: 24px;
    height: 24px;
    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;
    color: var(--blue);
    background-color: transparent;
    border-left: 1px solid var(--blue);
    font-size: 16px;
}

.product-page .actions .quantity__btn.plus {
    font-size: 16px;
    border-bottom: 1px solid var(--blue);
}

.product-page .actions__add {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    padding: 12px 40px;
}

.product-page .actions__add svg {
    width: 25px;
    height: 24px;
}

.product-page .actions__add svg path {
    fill: var(--white);
    -webkit-transition: fill 0.3s ease;
    transition: fill 0.3s ease;
}

.product-page .actions__add:active svg path {
    fill: var(--blue);
}

.product-tabs {
    padding: 100px 0;
}

.product-tabs__navigation {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border: 1px solid var(--border-gray);
    border-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 800px;
    overflow: hidden;
}

.product-tabs__title {
    width: 100%;
    max-width: 400px;
    padding: 17px 25px;
    background-color: var(--light-gray);
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.400000006px;
    color: var(--black);
    -webkit-transition: color 0.3s ease, background-color 0.3s ease;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.product-tabs__title._tab-active {
    background-color: var(--blue);
    color: var(--white);
}

.product-tabs__content {
    border: 1px solid var(--border-gray);
    border-radius: 20px;
    border-top-left-radius: 0;
}

.product-tabs__body {
    padding: 50px 20px;
}

.product-tabs__body h3 {
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.8999999762px;
    text-align: center;
    color: var(--black);
}

.product-tabs__body .description {
    width: 100%;
    max-width: 1218px;
    margin: 0 auto;
}

.product-tabs__body .description__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
}
.product-tabs__body .description__wrap table,
.product-tabs__body .description__wrap th,
.product-tabs__body .description__wrap td {
    border: 1px solid;
}
.product-tabs__body .description__wrap * {
    text-transform: none !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 137%;
    text-align: left;
    color: var(--text-gray);
}

.product-tabs__body .characteristics {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

.product-tabs__body .characteristics__wrap {
    width: 100%;
}

.product-tabs__body .characteristics__list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
}

.product-tabs__body .characteristics__item {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
}

.product-tabs__body .characteristics__item span {
    padding: 10px 25px;
    text-align: left;
    background-color: var(--light-gray);
    font-size: 18px;
    font-weight: 500;
    line-height: 110%;
    text-align: left;
    color: var(--black);
}

.err {
    height: 100dvh;
}

.err__container {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.err__numb {
    font-size: 90px;
    color: var(--blue);
    font-weight: 700;
}

.err__text {
    margin: 15px 0 30px;
    font-size: 20px;
    color: var(--black);
}

.woocommerce-notices-wrapper {
    display: none !important;
}

.woocommerce-pagination {
    margin-top: 30px;
}

.woocommerce-pagination ul {
    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;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
    padding: 7px 5px 5px;
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid var(--border-gray);
    font-size: 16px;
    -webkit-transition: border-color 0.3s ease, color 0.3s ease;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.woocommerce-pagination ul li a:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.woocommerce-pagination ul .current {
    border-color: var(--blue);
    color: var(--blue);
}

.search-page__wrap {
    padding: 100px 0;
}

.search-page__wrap .no-result {
    width: 100%;
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
    font-size: 25px;
    color: var(--blue);
}

.search-page__wrap .search-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.search-page__wrap .search-list li {
    /* max-width: 600px; */
    height: 100%;
}

.search-page__wrap .search-list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
    font-size: 18px;
    color: var(--black);
    height: 100%;
    border: 1px solid var(--border-gray);
    padding: 15px;
    border-radius: 5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    row-gap: 20px;
    -webkit-transition: color 0.3s ease, border-color 0.3s ease;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.search-page__wrap .search-list li a:hover {
    color: var(--blue);
    border-color: var(--blue);
}

.search-page__wrap .search-list li .bage {
    padding: 5px 20px;
    color: var(--white);
    background-color: var(--blue);
    border-radius: 10px;
    font-size: 14px;
}

.filter-wrap {
    border: 1px solid var(--border-gray);
    border-radius: 10px;
    overflow: hidden;
}

.filter-wrap .filter-wrap__title {
    padding: 17px 20px;
    background-color: var(--blue);
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
    text-align: left;
    text-transform: uppercase;
    color: var(--white);
}

.filter-wrap .filter__item-border {
    border: none;
    border-bottom: 1px solid var(--border-gray);
    padding: 0;
}

.filter-wrap .filter__header {
    padding: 15px 20px;
}

.filter-wrap .filter__title {
    font-size: 16px;
    font-weight: 400;
    line-height: 110%;
    text-align: left;
    color: var(--black);
    text-transform: none;
    cursor: pointer;
}

.filter-wrap .filter__handle-ico--minus {
    display: none !important;
}

.filter-wrap .filter__handle-ico--plus .filter__icon-plus {
    display: none;
}

.filter-wrap .filter__handle {
    width: 5px;
    height: 9px;
}

.filter-wrap .filter__handle-ico--plus {
    width: 5px;
    height: 9px;
    /* background-color: red; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    background-image: url('data:image/svg+xml,<svg width="5" height="9" viewBox="0 0 5 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.910561 8.9101L4.91406 4.70734C4.97132 4.64729 5 4.57821 5 4.50006C5 4.42192 4.97132 4.35271 4.91406 4.29263L0.910562 0.0902121C0.853208 0.0300074 0.787398 -1.84139e-07 0.712922 -1.87394e-07C0.638476 -1.90648e-07 0.572576 0.0301021 0.515342 0.0902121L0.0859093 0.541021C0.0286455 0.601131 2.85809e-05 0.670306 2.85775e-05 0.748452C2.85741e-05 0.826598 0.0286455 0.895773 0.0859093 0.955883L3.46221 4.50006L0.0856983 8.04437C0.0284344 8.10445 -1.31096e-06 8.17365 -1.31437e-06 8.25167C-1.31779e-06 8.32995 0.0286146 8.39912 0.0856982 8.4592L0.515312 8.91007C0.572545 8.97015 0.638476 9 0.712891 9C0.787397 9.00003 0.853297 8.97018 0.910561 8.9101Z" fill="%230E426F"/></svg>');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.filter-wrap .filter__handle-ico--plus.hidden {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.filter-wrap .filter__inner {
    padding: 0 20px 20px;
}

.filter-wrap .filter__inner .filter__inner {
    padding: 0 !important;
}

.filter-wrap .filter__properties-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
}

.filter-wrap .filter__checkgroup-check {
    border-color: var(--border-gray);
    border-radius: 3px;
}

.filter-wrap .filter__checkgroup-check:before {
    border-radius: 50%;
    background-color: var(--text-gray);
}

.filter-wrap .filter__checkgroup {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.filter-wrap .filter__checkgroup-link {
    /* display: flex;
  align-items: center; */
}

.filter-wrap .filter__checkgroup-title {
    padding-left: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 110%;
    text-align: left;
    color: var(--black);
}

.filter-wrap .filter__checkgroup-count {
    color: var(--text-gray);
}

.filter-wrap .filter__item--type-submit-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.filter-wrap .button-filter-submit {
    padding: 12px 25px;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.0509803922);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.0509803922);
    border: 1px solid var(--blue);
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    text-align: center;
    color: var(--white);
    background-color: var(--blue);
    border-radius: 10px;
    -webkit-transition: color 0.3s ease, background-color 0.3s ease;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.filter-wrap .button-filter-submit:active {
    background-color: var(--white);
    color: var(--blue);
}

.filter-wrap .filter-new-reset {
    padding: 12px 25px;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.0509803922);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.0509803922);
    border: 1px solid var(--blue);
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    text-align: center;
    color: var(--blue);
    background-color: var(--white);
    border-radius: 10px;
    -webkit-transition: color 0.3s ease, background-color 0.3s ease;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.filter-wrap .filter-new-reset:active {
    background-color: var(--blue);
    color: var(--white);
}

.filter-wrap .filter__slider-control {
    border: 1px solid var(--border-gray);
    border-radius: 3px;
    text-align: center;
    padding-top: 4px;
    padding-bottom: 4px;
}

.filter-wrap .pc-range-slider__control .ui-slider-range {
    background-color: var(--blue);
}

.filter-wrap .ui-slider-handle {
    width: 20px !important;
    height: 20px !important;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    top: 0;
}

.filter-wrap .pc-range-slider__control .ui-slider-handle:last-of-type {
    margin-left: -20px !important;
}

.grecaptcha-badge {
    z-index: 8;
    display: none !important;
}

.success-page__container {
    padding-top: 100px;
    padding-bottom: 100px;
    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;
    row-gap: 20px;
}

.success-page__text {
    width: 100%;
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
    font-size: 25px;
    line-height: 115%;
    color: var(--blue);
}

.policy__container {
    padding-top: 100px;
    padding-bottom: 100px;
    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;
    row-gap: 20px;
}

.policy__text {
    width: 100%;
}

.policy__text p {
    font-size: 18px;
    line-height: 115%;
    margin-bottom: 25px;
}

.policy__text h1,
.policy__text h2,
.policy__text h3,
.policy__text h4,
.policy__text h5,
.policy__text h6 {
    text-align: center;
    font-size: 22px;
    line-height: 115%;
    margin-bottom: 15px;
}

.swiper {
    overflow: hidden;
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.swiper-vertical .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.swiper-initialized .swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
    display: none !important;
}

@media (max-width: 1400px) {
    .product-page .actions__prices .price {
        font-size: 25px;
    }
}

@media (max-width: 1280px) {
    .search-page__wrap .search-list {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 990px) {
    .beadcrumbs ul li {
        font-size: 12px;
    }

    .page-welcome__wrap {
        padding: 20px;
        min-height: 220px;
    }

    .page-welcome__img-wrap::after {
        background: -webkit-gradient(
            linear,
            left top,
            right top,
            color-stop(2%, var(--header-gray)),
            color-stop(120%, rgba(217, 217, 217, 0))
        );
        background: linear-gradient(
            90deg,
            var(--header-gray) 2%,
            rgba(217, 217, 217, 0) 120%
        );
    }

    .product-page .main-block {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .product-page__vendor-code {
        font-size: 12px;
    }

    .product-page__short-desc {
        font-size: 14px;
        max-width: 100%;
    }

    .product-page .short-chars__title {
        font-size: 14px;
    }

    .product-page .short-chars__item span {
        font-size: 14px;
    }

    .product-page .short-chars__link {
        font-size: 14px;
    }

    .product-page .delivery__title {
        font-size: 14px;
    }

    .product-page .delivery__item {
        font-size: 14px;
    }

    .product-page .actions__prices .old-price {
        font-size: 14px;
    }

    .product-page .actions__prices .price {
        font-size: 20px;
    }

    .product-page .actions .quantity__input {
        font-size: 14px;
    }

    .product-page .actions .quantity__btn {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .product-page .main-block {
        padding-top: 35px;
    }

    .woocommerce-pagination ul {
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
    }

    .woocommerce-pagination ul li a,
    .woocommerce-pagination ul li span {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .search-page__wrap .no-result {
        font-size: 16px;
    }

    .search-page__wrap .search-list {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

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

    .search-page__wrap .search-list li .bage {
        font-size: 12px;
    }

    .filter-wrap .button-filter-submit {
        padding: 10px 20px;
        font-size: 14px;
    }

    .filter-wrap .filter-new-reset {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 550px) {
    .product-page .actions {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        row-gap: 20px;
        padding: 10px;
    }

    .product-page .actions__prices {
        width: 100%;
    }
}

@media (max-width: 87.5rem) {
    .header__address {
        display: none;
    }

    .header__button {
        margin-left: 0;
    }

    .advantages-block .advantages-block-item__title {
        font-size: 16px;
    }

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

@media (max-width: 80rem) {
    .recomended__slide {
        max-width: 306px;
    }

    .category-wrap .products {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 75rem) {
    .header__phone {
        display: none;
    }

    .header .header-catalog {
        margin-right: 0;
    }

    .header .header-menu__list {
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
    }

    .footer__right {
        -ms-grid-columns: (1fr) [2];
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
        max-width: 640px;
    }

    .main-categories__list {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }

    .catalog-categories .catalog-categories-item__img {
        max-width: 140px;
    }

    .catalog-categories .catalog-categories-item__title {
        font-size: 20px;
    }

    .cart .cart-products .cart-products-item__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        row-gap: 10px;
    }

    .product-page__dev-logo {
        display: none;
    }
}

@media (max-width: 68.75rem) {
    .advantages-block__list {
        -ms-grid-columns: (1fr) [2];
        grid-template-columns: repeat(2, 1fr);
    }

    .about-block__wrap {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .about-block__img {
        margin-left: auto;
    }

    .last-news__list {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .form-block::after {
        display: none;
    }

    .form-block__img {
        display: none;
    }

    .news-content img {
        max-width: 100%;
    }
}

@media (max-width: 61.875rem) {
    .popup-form__title {
        font-size: 28px;
    }

    .thanks__title {
        font-size: 28px;
    }

    .page {
        padding-top: 70px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .header__top {
        padding: 10px;
        background-color: var(--white);
    }

    .header__top .header__container {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .header__mobile-back {
        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;
        width: 20px;
        height: 20px;
    }

    .header__mobile-back svg path {
        fill: var(--blue);
    }

    .header__mobile-search-btn {
        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;
        width: 20px;
        height: 20px;
    }

    .header__mobile-search-btn svg path {
        fill: var(--blue);
    }

    .header__logo {
        max-width: 132px;
    }

    .header .header-search {
        position: fixed;
        top: 40px;
        left: 0;
        width: 100%;
        max-width: calc(100% - 30px);
        margin: 5px 15px;
        -webkit-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
        transform: translateY(-100px);
        opacity: 0;
        -webkit-transition: opacity 0.3s ease;
        transition: opacity 0.3s ease;
    }

    .header .header-search.active {
        opacity: 1;
        -webkit-transform: translate(0);
        -ms-transform: translate(0);
        transform: translate(0);
    }

    .header .header-search::after {
        content: "";
        position: absolute;
        top: -5px;
        left: -15px;
        width: calc(100% + 30px);
        height: calc(100% + 10px);
        background-color: var(--header-gray);
    }

    .header__button {
        display: none !important;
    }

    .header__bottom {
        display: none;
    }

    .header .header-catalog {
        display: none !important;
    }

    .header._header-scroll {
        top: 0;
    }

    .bottom-panel {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        background-color: var(--bg-bottom-panel);
        width: 100%;
        z-index: 10;
    }

    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        padding: 0 60px;
        width: 100%;
        min-height: 100dvh;
        height: 100%;
        z-index: 9;
        background-color: var(--white);
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: -webkit-transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease;
        overflow-y: scroll;

        scrollbar-width: none !important;
        scrollbar-color: transparent transparent;
    }

    .mobile-menu::-webkit-scrollbar {
        display: none;
    }

    .mobile-menu::-moz-scrollbar {
        width: 0px;
        height: 0px;
    }

    .footer__top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 30px;
    }

    .footer__left {
        max-width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 20px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .footer__logo {
        margin-bottom: 0;
    }

    .footer__right {
        max-width: 100%;
        width: 100%;
    }

    .footer__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        row-gap: 20px;
        padding-bottom: 60px;
    }

    .main-welcome__container {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .main-welcome__slider {
        -ms-grid-column: auto;
        grid-column-start: auto;
        grid-column-end: auto;
    }

    .main-welcome__right {
        -ms-grid-rows: 210px;
        grid-template-rows: 210px;
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        -webkit-column-gap: 24px;
        -moz-column-gap: 24px;
        column-gap: 24px;
    }

    .main-categories {
        padding: 50px 0;
    }

    .main-categories .main-categories-item__img {
        left: -80px;
    }

    .recomended {
        padding: 50px 0;
    }

    .advantages-block {
        padding: 50px 0;
    }

    .about-block {
        padding: 50px 0;
    }

    .last-news {
        padding: 50px 0;
    }

    .form-block {
        padding: 50px 0;
    }

    .page-welcome__title {
        font-size: 28px;
    }

    .catalog-categories {
        padding: 50px 0;
    }

    .catalog-categories__list {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }

    .catalog-categories .catalog-categories-item {
        padding: 20px 15px;
        -ms-grid-column: auto !important;
        grid-column-start: auto !important;
        grid-column-end: auto !important;
        row-gap: 15px !important;
    }

    .catalog-categories .catalog-categories-item:nth-child(1) {
        -ms-grid-column: 1 !important;
        grid-column-start: 1 !important;
        -ms-grid-column-span: 2 !important;
        grid-column-end: 3 !important;
    }

    .catalog-categories .catalog-categories-item__img {
        max-width: 100px;
    }

    .catalog-categories .catalog-categories-item__wrap {
        row-gap: 15px !important;
    }

    .catalog-categories .catalog-categories-item__title {
        font-size: 16px;
    }

    .catalog-categories .catalog-categories-item__link {
        opacity: 1;
        visibility: visible;
    }

    .text-block {
        padding: 50px 0;
    }

    .text-block__container {
        row-gap: 50px;
    }

    .text-block__img {
        margin: 0 auto;
    }

    .text-block__title {
        font-size: 28px;
    }

    .text-block__text {
        font-size: 16px;
    }

    .text-block__text ul li::before {
        margin: 11px 10px 0;
    }

    .text-block__wrap-left {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .text-block__wrap-right {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .news-page {
        padding: 50px 0;
    }

    .news-page__container {
        row-gap: 30px;
    }

    .news-page__list {
        -ms-grid-columns: (1fr) [2];
        grid-template-columns: repeat(2, 1fr);
    }

    .news-page .news-page-item {
        border-color: var(--blue);
    }

    .news-page .news-page-item__title {
        font-size: 18px;
    }

    .news-page .news-page-item__short {
        font-size: 14px;
    }

    .news-content {
        padding: 50px 0;
    }

    .news-content h1,
    .news-content h2,
    .news-content h3,
    .news-content h4,
    .news-content h5,
    .news-content h6 {
        font-size: 28px;
    }

    .contact {
        padding: 50px 0;
    }

    .contact .contact-item svg {
        display: none;
    }

    .contact__wrap {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .category-page .text-block__container {
        row-gap: 30px;
    }

    .category-wrap {
        padding: 50px 0;
    }

    .category-wrap__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        row-gap: 30px;
    }

    .category-wrap__left {
        max-width: 100%;
    }

    .cart {
        padding: 50px 0;
    }

    .cart__title {
        font-size: 28px;
    }

    .cart__empty {
        margin: 50px auto;
        font-size: 18px;
    }

    .cart__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 24px;
    }

    .cart .cart-products .cart-products-item__wrap {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .cart .cart-result {
        max-width: 100%;
    }

    .compare .no-result {
        margin: 50px auto;
        font-size: 18px;
    }

    .compare__title {
        font-size: 28px;
    }

    .compare__top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 15px;
    }

    .compare__left {
        width: 100%;
        min-width: auto;
        padding-right: 0;
    }

    .compare__btns {
        width: 100%;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
    }

    .compare__wrap {
        padding-bottom: 50px;
    }

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

    .compare__row .compare__left {
        display: none;
    }

    .compare .chars-title {
        padding: 10px;
        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: start;
        -ms-flex-align: start;
        align-items: flex-start;
        font-size: 14px;
    }

    .compare .compare-chars__slide .compare-chars-val {
        padding: 10px;
        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: start;
        -ms-flex-align: start;
        align-items: flex-start;
        font-size: 14px;
        row-gap: 5px;
    }

    .compare .compare-chars__slide .compare-chars-val .mob-title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        font-size: 12px;
    }

    .product-page__title {
        font-size: 28px;
        max-width: 100%;
    }

    .product-tabs {
        padding: 50px 0;
    }

    .product-tabs__title {
        font-size: 14px;
        padding: 15px 20px;
    }

    .product-tabs__body {
        padding: 35px 15px;
    }

    .product-tabs__body h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .product-tabs__body .description__wrap * {
        font-size: 14px;
    }

    .product-tabs__body .characteristics__item span {
        font-size: 14px;
        padding: 10px 15px;
    }

    .search-page__wrap {
        padding: 50px 0;
    }

    .search-page__wrap .no-result {
        font-size: 18px;
    }

    .success-page__container {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .success-page__text {
        font-size: 18px;
    }

    .policy__container {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .policy__text p {
        font-size: 16px;
    }

    .policy__text h1,
    .policy__text h2,
    .policy__text h3,
    .policy__text h4,
    .policy__text h5,
    .policy__text h6 {
        font-size: 20px;
    }
}

@media (max-width: 53.125rem) {
    .product-tabs__content {
        border-top-right-radius: 0;
    }
}

@media (max-width: 49.125rem) {
    .last-news .last-news-item__date {
        font-size: 12px;
    }
}

@media (max-width: 48rem) {
    .popup__content {
        padding: 25px 15px;
    }

    .popup-form__title {
        margin-bottom: 20px;
    }

    .popup-form__label {
        margin-bottom: 15px;
        row-gap: 3px;
    }

    .popup-form__label span {
        font-size: 14px;
    }

    .popup-form__input {
        font-size: 14px;
        padding: 10px 15px;
    }

    .popup-form__input::-webkit-input-placeholder {
        font-size: 14px;
    }

    .popup-form__input::-moz-placeholder {
        font-size: 14px;
    }

    .popup-form__input:-ms-input-placeholder {
        font-size: 14px;
    }

    .popup-form__input::-ms-input-placeholder {
        font-size: 14px;
    }

    .popup-form__input::placeholder {
        font-size: 14px;
    }

    .popup-form__policy {
        margin-bottom: 5px;
    }

    .thanks__text {
        font-size: 16px;
    }

    .section-top-title {
        font-size: 16px;
    }

    .blue-btn {
        padding: 15px 25px;
        font-size: 14px;
    }

    .blue-btn-small {
        font-size: 14px;
    }

    .blue-btn-fill {
        padding: 15px 25px;
        font-size: 14px;
    }

    .footer__top {
        padding-top: 50px;
    }

    .main-welcome {
        padding-bottom: 60px;
    }

    .main-welcome__slider .swiper-button-prev,
    .main-welcome__slider .swiper-button-next {
        display: none;
    }

    .main-welcome__slider .swiper-pagination {
        left: 15px;
        -webkit-column-gap: 15px;
        -moz-column-gap: 15px;
        column-gap: 15px;
    }

    .main-welcome__slider .swiper-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .main-welcome .main-welcome-slide {
        max-height: 300px;
    }

    .main-welcome .main-welcome-slide__wrap {
        padding: 30px 15px 50px;
    }

    .main-welcome .main-welcome-slide__title {
        font-size: 24px;
    }

    .main-welcome .main-welcome-item {
        padding: 30px 15px;
    }

    .main-categories__list {
        margin-bottom: 35px;
    }

    .main-categories .main-categories-item {
        padding: 30px 15px;
    }

    .main-categories .main-categories-item__img {
        max-width: 130px;
        left: -50px;
    }

    .main-categories .main-categories-item__wrap {
        row-gap: 25px;
        max-width: 140px;
    }

    .main-categories .main-categories-item__title {
        font-size: 18px;
    }

    .recomended__slider-wrap {
        margin-bottom: 35px;
    }

    .product-list-item__prices .old-price {
        font-size: 14px;
    }

    .product-list-item__prices .price {
        font-size: 18px;
    }

    .product-list-item__btn {
        padding: 10px 15px;
    }

    .product-list-item__btn svg {
        width: 20px;
        height: 20px;
    }

    .product-list-item__btn span {
        font-size: 14px;
    }

    .advantages-block__list {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .about-block__text {
        font-size: 14px;
    }

    .about-block__img {
        max-width: 100%;
    }

    .last-news__list {
        margin-bottom: 35px;
    }

    .last-news .last-news-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .last-news .last-news-item__img {
        max-width: 100%;
        max-height: 300px;
    }

    .form-block__text {
        font-size: 14px;
        margin: 15px 0 25px;
    }

    .form-block .form-block-form__wrap {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .form-block .form-block-form__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        row-gap: 20px;
    }

    .news-content img {
        margin: 25px auto;
    }

    .news-content h1,
    .news-content h2,
    .news-content h3,
    .news-content h4,
    .news-content h5,
    .news-content h6 {
        margin-bottom: 25px;
    }

    .news-content p,
    .news-content li {
        font-size: 14px;
    }

    .contact__list {
        margin-bottom: 30px;
    }

    .contact__list {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .contact .contact-item {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
        padding: 20px;
    }

    .contact .contact-item svg {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .contact .contact-item__wrap {
        row-gap: 5px;
    }

    .contact .contact-item__title {
        font-size: 16px;
    }

    .contact .contact-item__text {
        font-size: 14px;
    }

    .contact__col {
        font-size: 14px;
    }

    .contact__col b:first-child {
        font-size: 16px;
    }

    .category-wrap .left-categories__title span {
        font-size: 16px;
    }

    .category-wrap .left-categories__link {
        font-size: 14px;
    }

    .category-wrap .sub-categories {
        margin-bottom: 30px;
    }

    .category-wrap .sub-categories .sub-categories-item__link {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }

    .category-wrap .sub-categories .sub-categories-item__img {
        width: 50px;
    }

    .category-wrap .sub-categories .sub-categories-item__title {
        font-size: 14px;
    }

    .category-wrap .sort {
        margin: 0 0 20px;
    }

    .cart__title {
        margin-bottom: 35px;
    }

    .cart__empty {
        font-size: 16px;
    }

    .cart .cart-products__top {
        display: none;
    }

    .cart .cart-products .cart-products-item__name {
        font-size: 14px;
    }

    .cart .cart-products .cart-products-item__parthnumb {
        font-size: 12px;
    }

    .cart .cart-products .cart-products-item__input {
        font-size: 14px;
    }

    .cart .cart-products .cart-products-item__sum {
        font-size: 14px;
    }

    .cart .cart-products__noprice {
        display: none;
    }

    .cart .cart-result__buy svg {
        width: 20px;
        height: 20px;
    }

    .cart .cart-result__buy span {
        font-size: 14px;
    }

    .compare .no-result {
        font-size: 16px;
    }

    .compare__title {
        margin-bottom: 35px;
    }

    .product-page .actions__add svg {
        width: 20px;
        height: 20px;
    }

    .product-tabs__body .characteristics__list {
        row-gap: 20px;
    }

    .product-tabs__body .characteristics__item {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        row-gap: 5px;
    }

    .success-page__text {
        font-size: 16px;
    }

    .policy__text p {
        font-size: 14px;
    }

    .policy__text h1,
    .policy__text h2,
    .policy__text h3,
    .policy__text h4,
    .policy__text h5,
    .policy__text h6 {
        font-size: 18px;
    }
}

@media (max-width: 40rem) {
    .cart .cart-products .cart-products-item__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        row-gap: 10px;
    }
}

@media (max-width: 37.5rem) {
    .main-welcome__container {
        row-gap: 20px;
    }

    .main-welcome .main-welcome-slide {
        height: auto;
        max-height: none;
    }

    .main-welcome .main-welcome-slide__title {
        font-size: 18px;
    }

    .main-welcome .main-welcome-slide__img {
        display: none;
    }

    .main-welcome__right {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        row-gap: 20px;
    }

    .main-categories__list {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 34.375rem) {
    .popup-form__title {
        font-size: 20px;
    }

    .thanks__title {
        font-size: 20px;
    }

    .bottom-panel__container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer__right {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .advantages-block .advantages-block-item {
        padding: 25px 15px;
    }

    .page-welcome__title {
        font-size: 20px;
    }

    .text-block__title {
        font-size: 20px;
    }

    .text-block__text {
        font-size: 14px;
    }

    .text-block__text ul li::before {
        margin: 10px 7px 0;
    }

    .news-page__list {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .news-content h1,
    .news-content h2,
    .news-content h3,
    .news-content h4,
    .news-content h5,
    .news-content h6 {
        font-size: 20px;
    }

    .category-wrap .sort__text {
        display: none;
    }

    .category-wrap .products {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .cart__title {
        font-size: 20px;
    }

    .cart .cart-products .cart-products-item {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        padding: 15px 0;
        row-gap: 15px;
    }

    .cart .cart-products .cart-products-item__name {
        max-width: 100%;
    }

    .cart .cart-products .cart-products-item__quantity {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .cart .cart-products .cart-products-item__remove {
        position: absolute;
        top: 12px;
        right: 0;
    }

    .cart .cart-result {
        padding: 30px 20px;
    }

    .cart .cart-result__title {
        font-size: 20px;
    }

    .cart .cart-result__item .right {
        font-size: 14px;
    }

    .cart .cart-result__item .left {
        font-size: 14px;
    }

    .cart .cart-result__sum {
        font-size: 14px;
    }

    .compare__title {
        font-size: 20px;
    }

    .compare__btns {
        width: 100%;
        max-width: 306px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .product-page__compare {
        top: 10px;
        right: 15px;
    }

    .product-page__compare span {
        display: none;
    }

    .product-page__title {
        font-size: 20px;
    }

    .product-tabs__body h3 {
        font-size: 16px;
    }

    .err__numb {
        font-size: 50px;
    }

    .err__text {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

@media (max-width: 27.5rem) {
    .catalog-categories__list {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .catalog-categories .catalog-categories-item:nth-child(1) {
        -ms-grid-column: auto !important;
        grid-column-start: auto !important;
        grid-column-end: auto !important;
    }
}

@media (max-width: 25rem) {
    .page-welcome__title {
        font-size: 17px;
    }

    .compare__btns {
        max-width: 100%;
    }

    .compare .compare-prod__slide {
        max-width: 100%;
    }

    .compare .compare-chars__slide {
        max-width: 100%;
    }
}

@media (max-width: 22.4375rem) {
    .bottom-panel__container {
        padding-left: 5px;
        padding-right: 5px;
    }

    .bottom-panel__link {
        height: 30px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .bottom-panel__link svg {
        width: 20px;
        height: 20px;
    }

    .bottom-panel__link span {
        display: none;
    }
}

@media (max-width: 21.875rem) {
    .recomended__slide {
        max-width: 100%;
    }
}

@media (max-width: 21.25rem) {
    .category-wrap .sub-categories__list {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

@media (hover: hover) {
    .blue-btn:hover {
        background-color: var(--blue);
        color: var(--white);
    }

    .blue-btn-small:hover {
        background-color: var(--blue);
        color: var(--white);
    }

    .blue-btn-fill:hover {
        background-color: var(--white);
        color: var(--blue);
    }

    .beadcrumbs ul li:hover {
        color: var(--blue);
    }

    .header .header-search__button:hover {
        background-color: transparent;
    }

    .header .header-search__button:hover svg path {
        fill: var(--blue);
    }

    .header .header-catalog__wrap .sub-category__list li a:hover {
        border-color: var(--blue);
        background-color: var(--light-blue);
    }

    .header .header-catalog__list li:hover {
        background-color: var(--white);
    }

    .header .header-menu__list li a:hover {
        opacity: 1;
        color: var(--blue);
    }

    .main-welcome__slider .swiper-pagination .swiper-pagination-bullet:hover {
        background-color: var(--blue);
    }

    .product-list-item:hover {
        border-color: var(--blue);
    }

    .product-list-item__compare-remove:hover svg path {
        fill: var(--blue);
    }

    .product-list-item__btn:hover {
        background-color: var(--white);
    }

    .product-list-item__btn:hover svg path {
        fill: var(--blue);
    }

    .product-list-item__btn:hover span {
        color: var(--blue);
    }

    .news-page .news-page-item:hover {
        background-color: var(--light-blue);
        -webkit-box-shadow: 0px 0px 6px 0px var(--blue25);
        box-shadow: 0px 0px 6px 0px var(--blue25);
        border-color: var(--blue);
    }

    .category-wrap .left-categories__link:hover {
        color: var(--blue);
    }

    .category-wrap .sub-categories .sub-categories-item__link:hover {
        border-color: var(--blue);
        background-color: var(--light-blue);
    }

    .cart .cart-products .cart-products-item__btn:hover svg path {
        fill: var(--blue);
    }

    .cart .cart-products .cart-products-item__remove:hover svg path {
        fill: var(--blue);
    }

    .cart .cart-result__buy:hover {
        background-color: var(--white);
    }

    .cart .cart-result__buy:hover svg path {
        fill: var(--blue);
    }

    .cart .cart-result__buy:hover span {
        color: var(--blue);
    }

    .product-page .main-block__slider-thumb .swiper-slide:hover {
        border-color: var(--blue);
    }

    .product-page .actions__add:hover svg path {
        fill: var(--blue);
    }

    .filter-wrap .button-filter-submit:hover {
        background-color: var(--white);
        color: var(--blue);
    }

    .filter-wrap .filter-new-reset:hover {
        background-color: var(--blue);
        color: var(--white);
    }
}

.webp .advantages-block {
    background-image: url(../image/advantages-block-bg.webp);
}
