/* @font-face {
  font-family: "Montserrat";
  src: url("../fonts/static/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

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

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/static/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
} */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
    --black: #000f1b;
    --white: #fff;
    --primary: #a11f64;
    /* --tertiary: #e6e6e6; */
    --tertiary: #f3f3f3;
    --contrast: #fff;
    --grey: #677077;
    --lightGrey: #e6e6e6;
    --radius: 10px;
    transition: all 0.32s linear;
}

html,
body {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    color: var(--black);
    box-sizing: border-box;
    scroll-behavior: smooth;
    min-height: 100vh;
    position: relative;
}

.required {
    color: var(--red);
    text-decoration: none;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    background: var(--primary);
    background: linear-gradient(45deg, var(--primary), var(--primary));
    color: #fff;
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    letter-spacing: 0.5px;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    padding: 0 25px;
    transition: all 0.32s linear;
}

.btn:hover {
    filter: brightness(120%);
    background: white;
    color: #a11f64 !important;
}

.btn span svg,
.btn svg {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

button.header__burger-btn {
    display: none;
}

.btn span svg path,
.btn svg path {
    fill: #fff;
}

.btn-2 {
    padding: 0 35px;
    width: 100%;
    height: 46px;
    background-color: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: var(--radius);
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.32s linear;
}

.btn-2:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-3 {
    max-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    padding: 10px 19px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    line-height: normal;
    transition: all 0.32s linear;
}

.btn-3 span {
    transition: all 0.32s linear;
}

.btn-3:hover {
    background: var(--primary);
    color: #fff;
}

.btn-3 svg {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.32s linear;
}

.btn-3 svg path {
    fill: var(--white);
}

.btn-icon {
    display: block;
    position: relative;
    z-index: 11;
    width: 25px;
    height: 16px;
    background-color: transparent;
}

.btn-icon span {
    position: absolute;
    background-color: var(--primary);
    left: 0;
    width: 100%;
    top: 7px;
    height: 2px;
    border-radius: 4px;
    transition: all 0.3s ease 0s;
}

.btn-icon:before,
.btn-icon:after {
    content: "";
    background-color: var(--primary);
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    border-radius: 4px;
    transition: all 0.3s ease 0s;
}

.btn-icon:before {
    top: 0.5px;
}

.btn-icon:after {
    bottom: 0.5px;
}

.btn-2:hover .btn-icon span,
.btn-2:hover .btn-icon:before,
.btn-2:hover .btn-icon:after {
    background-color: var(--white);
}

/* .btn-2.active span {
  transform: scale(0);
}
.btn-2.active:before {
  transform: rotate(45deg);
  top: 8px;
}
.btn-2.active:after {
  transform: rotate(-45deg);
  bottom: 8px;
} */

.link {
    font-family: "PT Sans", sans-serif;
    color: var(--primary);
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.32s linear;
}

.link:hover {
    color: var(--primary);
}

.link-more {
    color: var(--grey);
    font-size: 16px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.link-more svg {
    width: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.link-more svg path {
    fill: var(--grey);
}

.link-more:hover {
    color: var(--primary);
}

.link-more:hover svg path {
    fill: var(--primary);
}

.container {
    max-width: 1270px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.title {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
}

.title-l {
    margin-bottom: 50px;
    font-size: 32px;
    font-weight: 700;
}

.section.form {
    padding: 130px 0px;
    padding-bottom: 80px;
}

.form__step .title-l {
    margin-bottom: 38px;
    line-height: 1.3;
}

.section.form .custom-checkbox label {
    font-size: 16px;
    font-weight: 300;
}

.section.form .custom-checkbox>label::before {
    width: 20px;
    height: 20px;
}

.section {
    padding: 50px 0;
    scroll-margin-top: 100px;
}

.arrow {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
}

.arrow-prev,
.arrow-next {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.34s ease-in;
    width: 40px;
    height: 40px;
}

.arrow-prev svg,
.arrow-next svg {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow-prev svg path,
.arrow-next svg path {
    stroke: var(--primary);
}

.arrow-prev:hover svg,
.arrow-next:hover svg {
    stroke: var(--tertiary);
}

.slick-dots li button:before {
    font-size: 9px;
    color: var(--primary);
}

.slick-dots li.slick-active button:before {
    opacity: 0.75;
    color: var(--primary);
}

.btn-plus,
.btn-minus {
    padding: 0;
    margin: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    background-color: #f4f4f4;

    border-radius: var(--radius);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    cursor: pointer;
    float: left;
    width: 30px;
    max-width: 30px;
    transition: all 0.32s linear;
    position: relative;
    z-index: 3;
}

.btn-minus {
    order: -1;
}

.quantity.item__number {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 100%;
    width: 100%;
}

.quantity .item__number input {
    order: 1;
}

.btn-plus {
    order: 2;
}

.btn-plus:hover,
.btn-minus:hover {
    background-color: var(--contrast);
    color: #000f1b;
}

span.xcp-plus,
span.xcp-minus {
    padding: 0 !important;
    margin: 0 !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    line-height: 1 !important;
    background-color: #f4f4f4 !important;

    border-radius: var(--radius) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 100%;
    text-align: center !important;
    cursor: pointer !important;
    float: left !important;
    width: 30px !important;
    max-width: 30px !important;
    height: 30px !important;
    transition: all 0.32s linear !important;
    position: relative !important;
    z-index: 3 !important;
}

span.xcp-plus:hover,
span.xcp-minus:hover {
    background-color: #1ebea5 !important;
    color: #fff !important;
}

.xoo-cp-qtybox {
    border-width: 1px;
    border-style: none !important;
    position: relative;
    display: inline-block;
    font-weight: 700;
    height: 30px;
    line-height: 35px;
}

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

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

/* Стили чекбоксов */

input[type="checkbox"] {
    margin-bottom: 0;
    width: 18px;
    height: 18px;
}

.custom-checkbox {
    /* width: 24px;
    height: 24px; */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* для элемента input c type="checkbox" */
.custom-checkbox>input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

/* для элемента label, связанного с .custom-checkbox */
.custom-checkbox>label {
    display: inline-flex;
    align-items: start;
    user-select: none;
    font-weight: 400;
    font-size: 16px;
}

/* создание в label псевдоэлемента before со следующими стилями */
.custom-checkbox>label::before {
    margin-top: 2px;
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #adb5bd;
    border-radius: 3px;
    margin-right: 9px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
    display: flex;
    justify-content: start;
    align-items: start;
}

.custom-checkbox>label span {
    margin-right: 6px;
}

/* .custom-checkbox>label span:nth-child(1):after {
    content: ",";
} */

/* стили при наведении курсора на checkbox */
.custom-checkbox>input:not(:disabled):not(:checked)+label:hover::before {
    border-color: var(--primary);
}

/* стили для чекбокса, находящегося в состоянии checked */
.custom-checkbox>input:checked+label::before {
    background: var(--primary) url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCIgIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+ICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICA8cmVjdCB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIGZpbGw9Im5vbmUiLz4gICAgPHBhdGggZmlsbD0iI0ZGRiIgZD0iTTQuMDQyOTM4OTYsMTAuMDQyODE4MyBDMy43OTc2NzQzOCw5LjQwOTg2NTU4IDQuNjU2MjkwNjcsOC44NTU2NjM3NCA1LjI2OTY0MjM4LDguODU1NjYzNzQgQzUuODgyOTk0MDksOC44NTU2NjM3NCA3LjcyMzA0OTA3LDExLjUyNjc2MTQgNy43MjMwNDkwNywxMS41MjY3NjE0IEM3LjcyMzA0OTA3LDExLjUyNjc2MTQgMTIuMzIzMTg2OSw0LjQwMzgzNDI5IDEyLjYyOTg2MjksNC4xMDcwNDU2NiBDMTIuOTM2NTM4OSwzLjgxMDI1NzAzIDE0LjQ2OTkxODIsNC4xMDcwNDU2NiAxMy44NTY1NjYzLDUuMjk0MjAwMTggQzEzLjMxMzMyMTYsNi4zNDU2NjA4NCA4LjMzNjQwMDkyLDEzLjYwNDI4MTggOC4zMzY0MDA5MiwxMy42MDQyODE4IEM4LjMzNjQwMDkyLDEzLjYwNDI4MTggNy43MjMwNDkyMSwxNC40OTQ2NDc3IDcuMTA5Njk3NTEsMTMuNjA0MjgxOCBDNi40OTYzNDU4LDEyLjcxMzkxNTkgNC4yODgyMDM1NSwxMC42NzU3NzA5IDQuMDQyOTM4OTYsMTAuMDQyODE4MyBaIi8+ICA8L2c+PC9zdmc+) no-repeat center;
    background-size: 18px 18px;
    border-color: var(--white);
}

/* стили для чекбокса, находящегося в состоянии disabled */
.custom-checkbox>input:disabled+label::before {
    background-color: #e9ecef;
}

/* Радио-кнопки */

input[type="radio"] {
    width: 24px;
    height: 24px;
}

/* для элемента input c type="checkbox" */
.custom-radio>input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

/* для элемента label, связанного с .custom-checkbox */
.custom-radio>label {
    display: inline-flex;
    align-items: center;
    user-select: none;
    font-weight: 400;
    font-size: 16px;
}

/* создание в label псевдоэлемента before со следующими стилями */
.custom-radio>label::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #adb5bd;
    border-radius: 50%;
    margin-right: 9px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.xoo-cp-remove-pd:before {
    display: none;
}

span.xoo-cp-close {
    font-size: 1px !important;
}

.xoo-cp-close:before {
    display: none;
}

span.xoo-cp-close:after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="none" stroke="%23333" stroke-linecap="round" stroke-linejoin="round" d="m7 7l10 10M7 17L17 7"%2F%3E%3C%2Fsvg%3E');
    background-size: contain;
    background-repeat: no-repeat;
}

/* стили при наведении курсора на checkbox */
.custom-radio>input:not(:disabled):not(:checked)+label:hover::before {
    border-color: #547efe;
}

/* стили для чекбокса, находящегося в состоянии checked */
.custom-radio>input:checked+label::before {
    border: 5px solid #547efe;
}

/* стили для чекбокса, находящегося в состоянии disabled */
.custom-radio>input:disabled+label::before {
    background-color: #e9ecef;
}

/* Стилизация скролла для Mozilla Firefox */
html,
body {
    scrollbar-color: #e6e6e6 #f4f4f4;
    /* «цвет ползунка» | «цвет полосы скроллбара» */
    scrollbar-width: thin;
    /* толщина: auto | thin | none */
}

/*  Для Google Chrome, Яндекс.Браузер, Safari и Opera используйте следующие CSS свойства. */
/* полоса прокрутки (скроллбар) */
::-webkit-scrollbar {
    width: 8px;
    /* ширина для вертикального скролла */
    height: 4px;
    /* высота для горизонтального скролла */
    background-color: #f4f4f4;
    border-radius: 8px;
}

/* ползунок скроллбара */
::-webkit-scrollbar-thumb {
    background-color: #e6e6e6;
    border-radius: 8px;
}

.breadcrumbs {
    padding: 13px 14px;
    background-color: var(--tertiary);
    position: relative;
    z-index: 4;
}

.breadcrumbs__list {
    display: flex;
    overflow-x: auto;
}

.breadcrumbs__item {
    position: relative;
    padding-right: 8px;
}

.breadcrumbs__item::after {
    content: "/";
    position: absolute;
}

.breadcrumbs__item:last-child::after {
    display: none;
}

.breadcrumbs__link {
    font-size: 14px;
    font-weight: 400;
}

/* Header */

.header {
    position: sticky;
    top: 0px;
    width: 100%;
    z-index: 9;
    background-color: #fff;
    font-size: 14px;
    border-bottom: 1px solid #e8e8e8;
}

.header__container {
    padding: 5px 0;
    width: 100%;
    background: white;
}

.header__wrap {
    padding: 5px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    position: relative;
}

.header__center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
}

.header__link:hover {
    color: var(--tertiary);
}

.header__link-contacts {
    color: var(--primary);
    font-size: 18px;
}

.header__logo-wrap {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

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

.header__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header__descr {
    text-wrap: nowrap;
    font-size: 15px;
    line-height: 1.2;
    color: var(--grey);
}

.header__search-btn-top svg {
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__search-btn-top {
    cursor: pointer;
}

.header__search-btn-top svg path {
    fill: var(--black);
}

.header__search-btn-top:hover svg path {
    fill: var(--primary);
}

.header__search {
    margin: 0px 15px;
    position: fixed;
    z-index: 2;
    top: 91px;
    right: -120%;
    max-width: 1240px;
    width: 100%;
    background-color: var(--white);
    transition: all 0.4s ease-in-out;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius);
}

.header__search.open {
    right: calc((100% - 1270px) / 2);
}

.header__search form {
    background-color: #fff;
    border-radius: var(--radius);
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
}

.header__search input {
    padding: 9px 15px 9px 45px;
    display: block;
    width: calc(100% + 36px);
    height: 46px;
    appearance: textfield;
    background-color: var(--white);
    border: 1px solid var(--grey);
    color: var(--grey);
    border-radius: var(--radius);
    outline: none;
    position: relative;
    text-overflow: ellipsis;
    z-index: 2;
}

.header__search input::placeholder {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    position: absolute;
    left: 12px;
}

.is-form-style.is-form-style-3 label {
    padding-left: 36px;
}

.header__search-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 50%;
    bottom: 50%;
    z-index: 2;
    cursor: pointer;
    transition: all 0.32s linear;
}

.header__search-btn svg {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__search-btn svg path {
    fill: var(--primary);
}

.header__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.32s ease-in-out;
}

.header__icon svg {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__icon svg path {
    fill: var(--black);
}

.header__icon span {
    white-space: nowrap;
    text-align: center;
    font-size: 12px;
}

.header__icon:hover svg path {
    fill: var(--primary);
}

.header__icon:hover span {
    color: var(--primary);
}

.header__cart-icon {
    position: relative;
}

.header__cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    color: var(--black);
    background-color: #fff;
    border: 1px solid var(--black);
    border-radius: 50%;
}

.header__burger {
    position: relative;
}

.header__burger-btn {
    width: 165px;
    gap: 15px;
    height: 40px;
    padding: 10px;
}

.header__burger-btn svg path {
    fill: var(--primary);
}

.header__burger-btn:hover svg path {
    fill: var(--white);
}

/* 
.open,
.close {
  transition: all 0.32s linear;
  width: 24px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.open path,
.close path {
  fill: #fff;
  transition: all 0.32s linear;
}

.close {
  display: none;
} */

.header__burger-btn span {
    margin-right: 5px;
}

/* 
.header__burger-btn.active .open {
  display: none;
}

.header__burger-btn.active .close {
  display: block;
} */

.header__nav {
    display: none;
}

.header__link {
    transition: all 0.32s linear;
}

.header__link:hover {
    color: var(--primary);
}

.header__menu-btn {
    display: none;
}

.header__menu-btn svg {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__menu-btn svg path {
    fill: var(--black);
}

.header .social {
    display: none;
    margin-bottom: 40px;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.aside {
    position: fixed;
    left: calc((100% - 1240px) / 2);
    top: -120%;
    opacity: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    box-shadow: 5px 0 5px -5px rgba(34, 32, 30, 0.2);
    width: 1240px;
    background-color: var(--white);
    transition: all 0.4s ease-in-out;
}

.aside.active {
    top: 170px;
    opacity: 1;
}

.aside__items {
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.aside__item {
    display: flex;
    position: relative;
    transition: all 0.32s ease-in-out;
}

.aside__item:hover .aside__link {
    color: var(--contrast);
}

.aside__link {
    font-size: 14px;
    color: var(--primary);
    transition: all 0.32s linear;
}

/* footer */

.footer {}

.footer__wrap {
    padding: 5px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.footer__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

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

.footer__link {
    margin-bottom: 0px;
    font-weight: 400;
    transition: all 0.34s ease-in;
}

.footer__link:hover {
    color: var(--primary);
}

.footer__link-main {
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 14px;
}

/* Страница деталки товара */

.dotted-line {
    display: inline-block;
    width: 100%;
    margin: 0 -100% 0 0;
    vertical-align: baseline;
    border-bottom: 1px dotted #ccc;
}

.product__title {
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 24px;
    display: flex;
    align-items: center;
}

.product__top-left {
    position: relative;
}

.product__arrow {
    left: -50px;
    top: calc(50% - 50px);
    width: calc(100% + 100px);
    padding: 20px 0px;
}

.product__arrow-prev,
.product__arrow-next {
    stroke: var(--primary);
}

.product__arrow-prev:hover,
.product__arrow-next:hover {
    stroke: var(--tertiary);
}

.product__row {
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.product__top-right {
    position: relative;
}

.simplefavorite-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.32s ease-in-out;
}

.simplefavorite-button svg {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.simplefavorite-button svg path {
    stroke: var(--primary);
}

.simplefavorite-button:hover svg path {
    stroke: var(--contrast);
}

.simplefavorite-button.active {
    opacity: 1;
}

.simplefavorite-button.active svg path {
    fill: var(--primary);
}

.product__top {
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr 1.3fr 1.3fr;
    align-items: start;
    gap: 24px;
}

.product__top-left {
    max-width: 350px;
}

.product__item-img {
    width: 100%;
    height: 100%;
}

.product__item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slick-prev::before,
.slick-next::before {
    color: var(--primary);
    font-size: 28px;
}

.slick-prev {
    left: -15px;
    z-index: 1;
}

.slick-next {
    right: 15px;
    z-index: 1;
}

.product__buy-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 24px;
}

.product__buy-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}

.product__buy-form input {
    margin-bottom: 10px;
    max-width: 100%;
}

.product__buy-btn {
    margin: 0 auto;
}

.product__top-right {
    margin-left: 20px;
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    max-width: fit-content;
}

.product__features {
    margin-bottom: 50px;
    width: 100%;
    font-weight: 400;
}

.product__feature-row {
    margin-bottom: 10px;
    display: block;
    position: relative;
    letter-spacing: -1ex;
}

.product__feature-left {
    display: inline-block;
    vertical-align: top;
    letter-spacing: normal;
    margin-right: -50%;
    overflow: hidden;
    width: 50%;
}

.product__feature-left_title {
    display: inline;
    padding-right: 3px;
}

.product__feature-right {
    display: inline-block;
    vertical-align: bottom;
    letter-spacing: normal;
    margin-left: 50%;
    width: 49%;
    padding-left: 3px;
    word-wrap: break-word;
}

.product__buy {
    padding: 20px;
    width: 100%;
    box-shadow: 0px 0px 7px rgba(34, 32, 30, 0.2);
    border-radius: var(--radius);
    flex: 1 1 25%;
    display: flex;
    flex-direction: column;
}

.product__buy .custom-checkbox {
    margin-bottom: 20px;
    justify-content: start;
}

.product__buy .custom-checkbox>label {
    font-size: 14px;
}

.product__quantity {
    margin-bottom: 10px;
}

.product__price {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 28px;
    color: var(--primary);
}

.product__item-cart,
.product__item-cart a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.product__item-cart a {
    transition: all 0.4s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product__item-cart a span {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product__item-cart a:hover {
    color: #e31e25;
}

.product__item-cart a.btn-3:hover {
    color: #fff;
}

.product__bottom {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 48px;
}

.product__bottom-left {
    width: 600px;
}

.product__subtitle {
    font-weight: 700;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
}

.product__features-table {
    width: 100%;
    max-width: 100%;

    tbody tr:nth-child(2n + 1) td {
        background-color: rgba(230, 230, 230, 0.4) !important;
    }

    tbody tr td:first-child {
        width: 50%;
    }

    tbody td {
        padding: 9px 20px;
        font-weight: 400;
    }
}

.product__bottom-right {
    width: 780px;
}

.product__bottom-right p {
    margin: 0 0 10px;
    font-weight: 400;
}

/* Слайдер-баннер */

.top-slider {
    padding-top: 56px;
}

.top-slider__wrap {
    position: relative;
    z-index: 1;
}

.top-slider .arrow {
    width: 90px;
    height: 40px;
    bottom: 20px;
    left: 20px;
    display: none;
}

.top-slider .arrow-prev,
.top-slider .arrow-next {
    border-radius: var(--radius);
    background-color: hsla(0, 0%, 100%, 0.63);
    box-shadow: 0 6px 8px rgba(49, 49, 49, 0.12);
}

.top-slider__items {
    width: 100%;
}

.top-slider__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 14px;
}

/* Блок Ассортимент */

.categories__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 38px;
    row-gap: 30px;
}

.categories__item {
    padding: 17px;
    background-color: #f2f2f2;
    border-radius: 19px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 30px;
}

.categories__left {
    padding: 20px;
    background-color: var(--white);
    border-radius: 19px;
}

.categories__img {
    width: 70px;
    height: 70px;
}

.categories__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.categories__name {
    color: var(--grey);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
}

/* Блок О компании */

.about {
    position: relative;
}

.about__wrap {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 20px;
}

.about__left .title-l {
    margin-bottom: 90px;
}

.about__left ul {
    margin-bottom: 110px;
    list-style: none;
}

.about__left li {
    margin-bottom: 55px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 40px;
}

.about__left li:last-of-type {
    margin-bottom: 0;
}

.about__img {
    width: 54px;
    height: 54px;
}

.about__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__text {
    max-width: 330px;
    color: var(--grey);
    font-size: 20px;
    font-weight: 400;
}

.about__text span {
    font-weight: 700;
}

.about .btn-2 {
    max-width: 470px;
}

.about__right {
    width: 800px;
    height: 618px;
    position: absolute;
    right: 0;
    bottom: 0;
}

.about__right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Блок с формой */

.form {
    background-color: var(--primary);
    color: var(--white);
}

.form__wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.form__step:nth-of-type(1) {
    max-width: 475px;
    padding-bottom: 100px;
}

.form__step:nth-of-type(2) {
    max-width: 300px;
    margin: 0px auto;
}

.form__step:nth-of-type(3) {
    max-width: 260px;
}

.form__subtitle {
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
}

.form__checkboxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.form .custom-checkbox {
    justify-content: start;
}

.form .custom-checkbox>label::before {
    background-color: var(--white);
}

.form__inner {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 10px;
}

.form__inner p {
    width: 100%;
}

.form .input {
    height: 48px;
    margin-top: 0px;
}

.form .btn-2 {
    margin-top: 7px;
    width: 100%;
    border-radius: 3px;
    border: 1px solid var(--white);
    height: 48px;
    color: var(--white);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.42px;
    text-transform: uppercase;
    background-color: var(--primary);
}

.form__descr {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form__descr a {
    text-decoration: underline;
    text-align: center;
}

.form__img {
    margin: 0 auto;
    max-width: 135px;
    height: 135px;
}

.form__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Блок Выгодные предложения */

.promo__wrap {
    max-width: 100%;
    width: 100%;
    position: relative;
}

.promo__items {
    margin: 0 -5px;
    z-index: 7;
}

.promo .arrow {
    left: -60px;
    top: calc(50% - 50px);
    width: calc(100% + 120px);
    padding: 20px 0px;
}

.promo .arrow-prev,
.promo .arrow-next {
    stroke: var(--primary);
}

/* .promo .arrow-prev:hover,
.promo .arrow-next:hover {
    stroke: var(--tertiary);
} */

.item {
    padding: 12px;
}

.item__inner {
    border: 1px solid var(--lightGrey);
    border-radius: var(--radius);
    padding: 12px;
    overflow: hidden;
    background-color: #fff;
    transition: all 0.32s linear;
}

.item__inner:hover {
    box-shadow: 0px 0px 7px rgba(34, 32, 30, 0.2);
}

.item__link {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
}

.item__img {
    margin-bottom: 20px;

    overflow: hidden;
    height: 250px;
}

.item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item__price-wrap {
    margin-top: auto;
    margin-bottom: 10px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.item__price {
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    color: var(--primary);
}

.item__price-old {
    position: relative;
    font-size: 13px;
    line-height: 20px;
}

.item__price-old:before {
    border-bottom: 1px solid var(--grey);
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    top: 1px;
    transform: rotate(-7deg);
}

.item__sticker {
    margin: 4px;
    padding: 2px 4px;
    width: auto;
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    background-color: var(--primary);
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    display: inline-block;
    border-radius: 5px;
    clear: left;
    box-shadow: none;
    border: none;
    outline: none;
}

.item__wishlist {
    padding: 4px 4px;
    background-color: transparent;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 7;
    transition: all 0.32s linear;
}

.item__wishlist svg {
    width: 24px;
    height: 24px;
}

.item__wishlist svg path {
    fill: var(--primary);
    transition: all 0.32s linear;
}

.item__wishlist a:hover svg path {
    fill: var(--primary);
}

.item__wishlist a:active svg path {
    fill: var(--primary);
    stroke: var(--primary);
}

.item__title {
    text-align: left;
    margin-bottom: 7px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: all 0.32s linear;
    min-height: 42px;
}

.item__title:hover {
    text-decoration: underline;
}

.item__property-wrap {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}

.item__code {
    font-weight: 400;
    font-size: 12px;
}

.item__property {
    font-weight: 400;
    text-align: center;
    font-size: 11px;
    white-space: nowrap;
    padding: 4px 8px;
    border-radius: var(--radius);
    display: inline-block;
    color: var(--primary);
    border: 1px solid var(--primary);
    background-color: var(--white);
}

.item__buy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.item__number {
    justify-content: center;
    align-items: center;
    position: relative;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    width: 50%;
}

.item__number input {
    border: none;
    text-align: center;
    display: inline-block;
    max-width: 30px;
    float: left;
    height: 100%;
    line-height: 30px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    color: var(--black);
}

.item__number input::placeholder {
    margin: auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 1;
    color: var(--black);
}

/* Блок Бренды */

.brands__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.brands__top-link:hover {
    color: var(--contrast);
}

.brands__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-auto-rows: 0;
    overflow-y: hidden;
    gap: 24px;
}

.brands__item {
    padding: 24px;
    border-radius: var(--radius);
    /* border-radius: var(--radius);
    background-color: var(--lightGrey); */
}

.brands__link {
    width: 100%;
    height: 150px;
    transition: all 0.32s linear;
}

.brands__link:hover img {
    transform: scale(1.03);
}

.brands__link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.32s linear;
    border-radius: var(--radius);
}

/* Блок Лидеры продаж */

.hit__wrap {
    max-width: 100%;
    width: 100%;
    position: relative;
}

.hit__items {
    margin: 0 -5px;
}

.hit .arrow {
    left: -60px;
    top: calc(50% - 50px);
    width: calc(100% + 120px);
    padding: 20px 0px;
}

.hit .arrow-prev,
.hit .arrow-next {
    stroke: var(--primary);
}

/* Блок Контакты на главной странице */

.main-contacts {
    position: relative;
    padding-bottom: 0px;
}

.main-contacts__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.main-contacts__left {
    margin-bottom: 122px;
}

.main-contacts__left .title-l {
    margin-bottom: 90px;
}

.main-contacts__item {
    margin-bottom: 50px;
}

.main-contacts__text {
    color: var(--grey);
    font-size: 20px;
}

.main-contacts__phone {
    padding-bottom: 1px;
    margin-bottom: 10px;
    display: block;
    color: var(--grey);
    font-size: 20px;
    position: relative;
    width: fit-content;
}

.main-contacts__phone:after {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background-color: var(--grey);
}

.social {
    margin-top: 10px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 24px;
}

.social__item {
    background-color: var(--primary);
    width: 45px;
    height: 45px;
    border-radius: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social__icon-telegram {
    background-color: #2aabee;
}

.social__icon-whatsapp {
    background-color: #25d366;
}

.social__item svg {
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social__item svg path {
    fill: var(--white);
}

.main-contacts iframe {
    max-width: 800px;
    width: 100%;
    height: 530px;
    max-height: 530px;
    position: absolute;
    right: 0;
    bottom: 0;
    border-radius: 0;
}

/* Блок Требуется консультация? */

.assist {
    background-color: var(--primary);
}

.assist .title-l {
    color: #fff;
}

.assist__wrap {
    color: #fff;
}

.assist__text {
    margin-bottom: 20px;
    font-size: 18px;
}

.assist__form-inner {
    margin-bottom: 20px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.assist__form-inner p {
    display: flex;
    justify-content: center;
    align-items: center;
}

.assist__form-inner .smart-captcha_invisible {
    min-width: unset !important;
}

.assist__form-inner .input {
    border: none;
    max-width: 300px;
}

.assist__btn p {
    display: flex;
    justify-content: start;
}

.assist__descr {
    font-size: 12px;
}

.assist__descr a {
    text-decoration: underline;
}

.assist__descr a:hover {
    color: var(--contrast);
}

.call {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 10;
}

.social-fixed {
    position: fixed;
    bottom: 120px;
    right: 52px;
    z-index: 10;
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.call span {
    display: block;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary);
    border: 1px solid var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(0deg);
    animation: call 1s linear infinite;
}

.call span svg {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.call span svg path {
    fill: #fff;
}

p.order-again a {
    color: #ffffff;
    padding: 10px 12px;
    border-radius: 8px;
    background: #a11f64;
    border: 1px solid #a11f64;
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.34s ease-in;
    transition: all 0.34s ease-in;
    cursor: pointer;
    text-align: center;
    max-width: 140px;
    width: 100%;
    font-size: 16px;
    white-space: nowrap;
}

p.order-again a:hover {
    background: white;
    color: #a11f64;
}

@keyframes call {
    0% {
        transform: rotate(0deg);
    }

    30% {
        transform: rotate(20deg);
    }

    60% {
        transform: rotate(-20deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* Модальное окно */

.modal {
    border-radius: var(--radius);
    background-color: var(--white);
    width: 480px;
}

.modal__wrap {
    padding: 30px;
}

.modal__close {
    position: absolute;
    z-index: 10;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.modal__close svg {
    width: 24px;
    height: 24px;
    transition: all 0.32s linear;
}

.modal__close svg path {
    stroke: var(--black);
}

[data-modal-open="politika"] {
    position: relative;
    cursor: pointer;
}

[data-modal-open="politika"]:before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 1px;
    background: white;
    transform: scale(0);
    transition: all 0.2s linear;
}

[data-modal-open="politika"]:hover:before {
    transform: scale(1);
}

.modal__close svg:hover {
    transform: rotate(90deg);
}

.modal__title {
    padding-top: 10px;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
}

.modal__link {
    color: var(--primary);
}

.modal__link:hover {
    color: var(--main-blue);
}

.modal__btn {
    margin: 0 auto;
}

.modal__wrap .custom-checkbox {
    margin-bottom: 20px;
    justify-content: start;
    margin-top: 20px;
}

.modal__wrap .custom-checkbox>label {
    font-size: 13px;
}

.input {
    padding: 10px 10px 10px 30px;
    display: block;
    width: 100%;
    height: 46px;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    color: var(--black);
    appearance: textfield;
    background-color: var(--white);
    border: 1px solid var(--grey);
    border-radius: 3px;
    outline: none;
    position: relative;
    text-overflow: ellipsis;
    z-index: 2;
}

.input::placeholder {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    color: #d0d0d0;
}

.input:focus,
.input:active {
    border: 1px solid var(--primary);
    background-color: #fff;
}

.input:disabled {
    background-color: #ddd;
    color: #555;
    cursor: not-allowed;
}

/* О компании */

.company__img {
    margin-bottom: 20px;
    max-width: 900px;
}

.company__img img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    object-fit: contain;
}

.company__title {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
}

.company__text {
    font-size: 18px;
}

.company__text p {
    margin-bottom: 10px;
}

/* Страница Каталог */

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

.catalog__items {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.catalog__item {
    background: linear-gradient(240.61deg,
            var(--tertiary) 11.88%,
            #f2f2f2 99.54%);
    width: 100%;
    height: 150px;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius);
    position: relative;
    transition: all 0.4s ease-in-out;
}

.catalog__item:hover {
    transform: scale(1.03);
}

.catalog__text {
    padding: 30px;
    font-size: 16px;
    font-weight: 500;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.catalog__img {
    max-width: 60%;
    max-height: 100%;
    display: block;
    position: absolute;
    right: 15px;
    bottom: 15px;
    transition: all 0.4s ease-in-out;
}

.catalog__btn {
    position: absolute;
    right: 15px;
    bottom: 15px;
}

a.added_to_cart.wc-forward {
    display: none;
}

.item__cart {
    /* margin-left: auto; */
    font-size: 13px;
    max-width: 140px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.item__wishlist svg path {
    fill: #ffffff !important;
    transition: all 0.32s linear;
}

.item__wishlist .active svg path {
    fill: #0b89d2 !important;
    transition: all 0.32s linear;
}

.item__sticker {
    margin: 4px;
    padding: 2px 4px;
    width: auto;
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    background-color: #2c82c9;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    display: inline-block;
    border-radius: 5px;
    clear: left;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #fff;
    outline: none;
}

.pagination span {
    background-color: var(--primary);
    color: #fff;
    padding: 8px 14px;
    margin: 0 5px;
    border: 1px solid var(--black);
    border-radius: var(--radius);
    text-decoration: none;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.pagination a {
    padding: 8px 14px;
    margin: 0 5px;
    border: 1px solid var(--black);
    border-radius: var(--radius);
    background: var(--black);
    text-decoration: none;
    color: var(--black);
    color: var(--white);
}

.pagination a:hover {
    background-color: var(--white);
    color: var(--black);
}

.pagination a.active {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--black);
}

.pagination span {
    background-color: var(--white);
    color: var(--black);
}

/* Страница Личный кабинет */

.login__wrap {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 30px;
}

.login__left {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.login__form {
    width: 100%;
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin-bottom: 60px;
}

.login__form-field {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.login__form .custom-checkbox {
    margin-bottom: 20px;
    justify-content: start;
}

.login__form .custom-checkbox>label {
    align-items: end;
    font-size: 14px;
    line-height: 1.2;
}

.login__btn {
    max-width: 175px;
    /* margin-bottom: 12px; */
}

.login__reset-password {
    color: var(--primary);
}

.login__reset-password:hover {
    color: var(--contrast);
}

.login__right {
    width: 50%;
}

.login__form p {
    margin-bottom: 12px;
}

.login__link {
    color: var(--primary);
}

.login__link:hover {
    color: var(--primary);
}

/* Страница Акции */

.promo-page__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
}

.promo-page__link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: all 0.4s ease-in;
}

.promo-page__img {
    margin-bottom: 10px;
    width: 100%;
    border-radius: var(--radius);
    transition: all 0.4s ease-in-out;
}

.promo-page__link:hover .promo-page__img {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.promo-page__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.promo-page__text {
    font-size: 20px;
    font-weight: 500;
}

/* Страница одной акции */

.promo-single__info {
    margin-bottom: 20px;
    width: fit-content;
    padding: 10px 18px;
    font-weight: 500;
    background-color: var(--tertiary);
    border-radius: var(--radius);
}

.promo-single__text {
    margin-bottom: 20px;
}

.promo-single__text p {
    margin-bottom: 10px;
}

/* Страница Контакты */

.contacts__wrap {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
    font-size: 16px;
    font-weight: 500;
}

.contacts__items {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.contacts__item {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.contacts__title {
    color: var(--primary);
}

.contacts__phone:hover {
    color: var(--contrast);
}

.contacts__email:hover {
    color: var(--contrast);
}

iframe {
    border-radius: var(--radius);
    width: 100%;
    max-height: 510px;
}

/* Блок Региональные представительства на странице Контакты */

.regions__descr {
    margin-bottom: 20px;
}

.regions__item {
    margin-bottom: 20px;
    padding-bottom: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 2fr;
    gap: 24px;
    border-bottom: 1px solid var(--grey);
}

.regions__top {
    margin-bottom: 10px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.regions__top svg {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.regions__top svg path {
    fill: var(--primary);
}

.regions__subtitle {
    font-size: 16px;
    font-weight: 500;
}

.regions__phone:hover {
    color: var(--contrast);
}

.regions__email:hover {
    color: var(--contrast);
}

/* Страница Корзина */

.cart__empty-text {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
}

.cart__empty-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary);
}

.cart__empty-link:hover {
    color: #222222;
}

.cart__head {
    margin-bottom: 36px;
    width: calc(100% - 462px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.section-title {
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 700;
}

.cart__title span {
    margin-left: 16px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--primary);
}

.cart__delete-all {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    transition: all 0.32s linear;
}

.cart__delete-all svg {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart__delete-all svg path {
    transition: all 0.32s linear;
    fill: var(--black);
}

.cart__delete-all:hover svg path {
    fill: var(--primary);
}

.cart__delete-all:hover span {
    color: var(--primary);
}

.cart__content {
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 54px;
    margin-bottom: 64px;
}

.cart__sidebar {
    padding: 24px;
    width: 100%;
    max-width: 448px;
    height: fit-content;
    z-index: 1;
    border-radius: var(--radius);
    background-color: var(--tertiary);
    position: sticky;
    top: 200px;
}

.cart__sidebar-item,
.cart__sidebar-summary {
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 144% !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 24px !important;
}

.cart__sidebar-item {
    margin-bottom: 18px !important;
}

.cart-collaterals .cart__sidebar-item {
    display: none !important;
}

td bdi {
    font-weight: 500;
}

.cart__sidebar-summary {
    margin-bottom: 32px;
    font-weight: 500;
}

.cart-item {
    display: grid;
    grid-template-columns: 150px 1fr 220px;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid var(--lightGrey);
    margin-bottom: 24px;
    padding-bottom: 24px;
    position: relative;
}

.cart-item__img {
    max-width: 150px;
    height: 138px;
}

.cart-item__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item__title {
    font-size: 16px;
    font-weight: 500;
    transition: all 0.32s linear;
}

.cart-item__title:hover {
    color: var(--primary);
}

.cart-item__buy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    position: relative;
}

.cart-item__price {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.cart-item__delete {
    position: absolute;
    right: 7px;
    top: 115px;
}

.cart-item__delete svg {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-item__delete svg path {
    transition: all 0.32s linear;
    fill: var(--black);
}

.cart-item__delete:hover svg path {
    fill: var(--primary);
}

/* Страница оформления заказа */

.checkout__content {
    display: grid;
    grid-template-columns: 448px 1fr;
    grid-column-gap: 54px;
    margin-bottom: 64px;
    width: 100%;
    position: relative;
    overflow: visible;
}

.checkout__content-right {
    order: -1;
    margin-bottom: 40px;
}

.checkout__field {
    margin: 0 0 20px;
    width: 100%;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 7px;
    display: flex;
}

.checkout__field:nth-child(1) {
    width: 48%;
    float: left;
}

.checkout__field:nth-child(2) {
    width: 48%;
    float: right;
}

.checkout__label {
    font-weight: 400;
}

.checkout__sidebar {
    position: static;
}

/* Страница Мой аккаунт */

.account__wrap {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

.account__nav {
    min-width: 280px;
    max-width: 280px;
    width: 100%;
}

.account__link {
    list-style: none;
    border: 1px solid #f2f2f2;
    border-bottom: none;
    position: relative;
}

.account__link.is-active {
    background: #f2f2f2;
}

.account__list {
    margin-bottom: 40px;
    border-bottom: 1px solid #f2f2f2;
}

.account__link:hover {
    background-color: #f2f2f2;
}

.account__link:active a {
    font-weight: 700;
}

.account__link a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 7px;
    padding: 12px;
    width: 100%;
    height: 100%;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--primary);
}

.account__link a svg {
    width: 22px;
    height: 22px;
}

.account__delete a {
    color: var(--contrast);
}

.account__logout a {
    color: var(--contrast);
}

.account__right {
    width: calc(100% - 300px);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding-left: 30px;
}

.account__form-info {
    margin-bottom: 30px;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
}

.account__form-info p {
    margin-bottom: 16px;
}

.account__form-field {
    margin-bottom: 16px;
}

.account__subtitle {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
}

.account__form-password {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.account__btn {
    margin-top: 20px;
}

.password-input {
    width: 100%;
}

.container-my-account {
    display: flex;
}

.custom-checkbox .wpcf7-list-item {
    margin: 0 !important;
}

.custom-checkbox label {
    font-size: 13px;
    display: flex;
    justify-content: start;
    align-items: center;
}

input[name="acceptance-962"] {
    margin-top: 1px;
    margin-right: 10px;
}

.is-search-input {
    padding: 9px 15px 9px 45px;
    display: block;
    width: 100%;
    height: 40px;
    appearance: textfield;
    background-color: var(--white);
    border: 1px solid var(--grey);
    color: var(--grey);
    border-radius: var(--radius);
    outline: none;
    position: relative;
    text-overflow: ellipsis;
    z-index: 2;
}

.is-form-style button.is-search-submit {
    position: absolute;
    top: 45%;
    height: 38px;
    transform: translateY(-45%);
    z-index: 2;
    padding-left: 11px;
    border-radius: var(--radius);
}

.is-search-icon {
    border-top-left-radius: var(--radius) !important;
    border-bottom-left-radius: var(--radius) !important;
    border-right: none !important;
}
.is-ajax-search .is-loader-image {
    right: -31px !important;
}

.is-search-icon:hover {
    background: #fff !important;
}

/* Страница Бренды */

.brands-page .brands__items {
    grid-auto-rows: 1fr;
}

/* Страница товары Бренда */

.brands-single__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.input-text {
    padding: 8px;
    display: block;
    width: 100%;
    height: 50px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    color: var(--black);
    appearance: textfield;
    background-color: var(--white);
    border: 1px solid var(--grey);
    border-radius: var(--radius);
    outline: none;
    position: relative;
    text-overflow: ellipsis;
    z-index: 2;
}

#billing_company_field,
#billing_country_field,
#billing_address_1_field,
#billing_address_2_field,
#billing_city_field,
#billing_state_field,
#billing_postcode_field {
    display: none !important;
}

button[onclick*="generateAndPrintQuote(event"] {
    display: none;
}

.woocommerce-additional-fields h3 {
    display: none;
}

.woocommerce-input-wrapper {
    width: 100%;
}

.checkout__textarea {
    margin: 0 0 20px;
    width: 100%;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 7px;
    display: flex;
}

.checkout__textarea textarea {
    height: 100px;
    resize: none;
}

#order_comments_field {
    display: none;
}

.woocommerce-privacy-policy-text {
    display: none;
}

.woocommerce-info {
    display: none;
}

.order-total {}

.woocommerce-checkout-payment .btn {
    margin-top: 32px;
    display: none;
}

a.xoo-cp-btn-ch {
    display: none !important;
}

.xoo-cp-pdetails td img {
    height: 100%;
    object-fit: contain;
}

td.xoo-cp-pprice,
.xoo-cp-ptotal bdi {
    font-size: 18px !important;
}

.xoo-cp-ptotal {
    margin-bottom: 20px;
}

td.xoo-cp-ptitle a,
td.xoo-cp-ptitle a,
.xoo-cp-ptotal {
    font-size: 16px !important;
}

.xoo-cp-qtybox {
    border-radius: 5px !important;
    overflow: hidden;
}

input[type="number"].xoo-cp-qty {
    font-weight: 400;
    font-size: 20px;
    height: 30px !important;
    line-height: 30px !important;
}

.xoo-cp-added:before {
    content: "" !important;
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="white" d="M912 190h-69.9c-9.8 0-19.1 4.5-25.1 12.2L404.7 724.5L207 474a32 32 0 0 0-25.1-12.2H112c-6.7 0-10.4 7.7-6.3 12.9l273.9 347c12.8 16.2 37.4 16.2 50.3 0l488.4-618.9c4.1-5.1.4-12.8-6.3-12.8z"%2F%3E%3C%2Fsvg%3E');
    background-size: contain;
    background-repeat: no-repeat;
}

.xoo-cp-container {
    max-width: 100%;
}

.xoo-cp-container form.woocommerce-ordering {
    text-align: left;
}

.xoo-cp-pdetails tr {
    justify-content: flex-end;
}

.xoo-cp-pdetails tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}

td.xoo-cp-ptitle a {
    font-size: 14px !important;
    font-weight: 400 !important;
}

td.xoo-cp-ptitle {
    width: 39% !important;
}

.xoo-cp-pdetails td.xoo-cp-remove {
    align-items: flex-end;
    text-align: end;
    order: 3;
    width: unset !important;
}

td.xoo-cp-pqty {
    min-width: unset !important;
}

.xoo-cp-btns {
    margin-bottom: 20px !important;
}

.xcp-btn {
    background-color: hsl(211, 78%, 50%) !important;
    color: #ffffff;
    border: none !important;
    display: inline !important;
    padding: 10px 14px !important;
    height: 50px !important;
    max-width: 144px !important;
    min-width: 144px !important;
    width: 100% !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    transition: all 0.34s ease-in !important;
    cursor: pointer;
}

td.xoo-cp-remove .xoo-cp-remove-pd:after {
    content: "";
    display: inline-block;
    margin-right: 5px;
    width: 32px;
    height: 32px;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="%23333" d="M7.615 20q-.67 0-1.143-.472Q6 19.056 6 18.385V6H5V5h4v-.77h6V5h4v1h-1v12.385q0 .69-.462 1.152q-.463.463-1.153.463h-8.77ZM17 6H7v12.385q0 .269.173.442t.442.173h8.77q.23 0 .423-.192q.192-.193.192-.423V6ZM9.808 17h1V8h-1v9Zm3.384 0h1V8h-1v9ZM7 6v13V6Z"%2F%3E%3C%2Fsvg%3E');
    background-size: contain;
    background-repeat: no-repeat;
}

.xcp-btn:hover {
    filter: brightness(110%) !important;
}

a.xcp-btn {
    text-transform: none !important;
}

span.xcp-minus {
    border-right-width: 0 !important;
    height: 100%;
}

span.xcp-plus {
    border-left-width: 0 !important;
    height: 100%;
}

span.xcp-minus:hover,
span.xcp-plus:hover {
    color: #fff;
    /* background-color: hsl(211, 78%, 50%) !important; */
}

.post-edit-link {
    display: none;
}

.woocommerce-MyAccount-navigation-link--dashboard a::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'><path fill='%230069B4' d='M6.196 17.485q1.275-.918 2.706-1.451Q10.332 15.5 12 15.5q1.667 0 3.098.534q1.43.533 2.706 1.45q.99-1.024 1.593-2.42Q20 13.666 20 12q0-3.325-2.337-5.663T12 4Q8.675 4 6.337 6.337T4 12q0 1.667.603 3.063q.603 1.397 1.593 2.422Zm5.805-4.985q-1.264 0-2.133-.868Q9 10.765 9 9.501t.868-2.133q.867-.868 2.131-.868t2.133.868Q15 8.235 15 9.499q0 1.264-.868 2.133q-.867.868-2.131.868ZM12 21q-1.883 0-3.525-.701q-1.642-.7-2.858-1.916q-1.215-1.216-1.916-2.858Q3 13.883 3 12t.701-3.525q.7-1.642 1.916-2.858q1.216-1.215 2.858-1.916Q10.117 3 12 3t3.525.701q1.642.7 2.858 1.916q1.215 1.216 1.916 2.858Q21 10.117 21 12t-.701 3.525q-.7 1.642-1.916 2.858q-1.216 1.215-2.858 1.916Q13.883 21 12 21Zm0-1q1.383 0 2.721-.484q1.339-.483 2.314-1.324q-.975-.782-2.256-1.237Q13.499 16.5 12 16.5q-1.498 0-2.788.445q-1.29.445-2.247 1.247q.975.84 2.314 1.324Q10.617 20 12 20Zm0-8.5q.842 0 1.421-.579Q14 10.342 14 9.5q0-.842-.579-1.421Q12.842 7.5 12 7.5q-.842 0-1.421.579Q10 8.658 10 9.5q0 .842.579 1.421q.579.579 1.421.579Zm0-2Zm0 8.75Z'></path></svg>");
    background-repeat: no-repeat;
    background-size: contain;
}

.woocommerce-MyAccount-navigation-link--orders a::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'><path fill='%230069B4' d='M6.5 12.5h8v-1h-8zm0-3h8v-1h-8zM3 19V5h18v14zm1-1h16V6H4zm0 0V6z'></path></svg>");
    background-repeat: no-repeat;
    background-size: contain;
}

.woocommerce-MyAccount-navigation-link--downloads a::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'><path fill='%230069B4' d='M5.5 21q-.213 0-.356-.144Q5 20.712 5 20.5t.144-.356Q5.288 20 5.5 20h13q.213 0 .356.144T19 20.5q0 .212-.144.356q-.143.143-.356.143zm6.48-4.298q-.18 0-.353-.08q-.171-.082-.292-.243l-3.989-5.292q-.298-.404-.077-.851q.221-.448.723-.448h1.643v-5.98q0-.344.232-.576q.232-.232.575-.232h3.096q.344 0 .576.232q.232.232.232.576v5.98h1.642q.503 0 .724.448q.22.447-.077.85l-4.008 5.293q-.121.161-.293.242q-.171.08-.353.08m0-1.105l3.573-4.788h-2.208V4h-2.711v6.808H8.427zM12 10.808'></path></svg>");
    background-repeat: no-repeat;
    background-size: contain;
}

.woocommerce-MyAccount-navigation-link--edit-address a::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'><path fill='%230069B4' d='M12.003 11.73q.668 0 1.14-.475q.472-.475.472-1.143t-.475-1.14q-.476-.472-1.143-.472t-1.14.476q-.472.475-.472 1.143t.475 1.14q.476.472 1.143.472ZM12 19.678q2.82-2.454 4.458-4.991q1.638-2.538 1.638-4.39q0-2.744-1.737-4.53T12 3.981q-2.621 0-4.359 1.785t-1.737 4.53q0 1.852 1.638 4.39q1.639 2.537 4.458 4.99Zm0 1.342q-3.525-3.117-5.31-5.814q-1.786-2.697-1.786-4.909q0-3.173 2.066-5.234Q9.037 3 12 3t5.03 2.062q2.066 2.061 2.066 5.234q0 2.212-1.785 4.909q-1.786 2.697-5.311 5.814Zm0-10.904Z'></path></svg>");
    background-repeat: no-repeat;
    background-size: contain;
}

.woocommerce-MyAccount-navigation-link--edit-account a::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'><path fill='%230069B4' d='M2.5 5V3.115q0-.666.475-1.14q.474-.475 1.14-.475H6q.213 0 .356.144q.144.144.144.357t-.144.356Q6.213 2.5 6 2.5H4.115q-.269 0-.442.173t-.173.442V5q0 .213-.144.356Q3.212 5.5 3 5.5t-.356-.144Q2.5 5.213 2.5 5m18 0V3.115q0-.269-.173-.442t-.442-.173H18q-.213 0-.356-.144Q17.5 2.212 17.5 2t.144-.356Q17.788 1.5 18 1.5h1.885q.666 0 1.14.475q.475.474.475 1.14V5q0 .213-.144.356q-.144.144-.357.144t-.356-.144Q20.5 5.213 20.5 5m-18 15.885V19q0-.213.144-.356q.144-.144.357-.144t.356.144q.143.144.143.356v1.885q0 .269.173.442t.442.173H6q.213 0 .356.144T6.5 22q0 .212-.144.356q-.143.143-.356.143H4.115q-.666 0-1.14-.475q-.475-.474-.475-1.14ZM19.885 22.5H18q-.213 0-.356-.144T17.5 22q0-.212.144-.356q.144-.143.356-.143h1.885q.269 0 .442-.173t.173-.442V19q0-.213.144-.356q.144-.144.357-.144t.356.144q.143.144.143.356v1.885q0 .666-.475 1.14q-.474.475-1.14.475M6.5 17.885q0 .23.192.423q.193.192.423.192h9.77q.23 0 .423-.192q.192-.193.192-.423V6.115q0-.23-.192-.423q-.193-.192-.423-.192h-9.77q-.23 0-.423.192q-.192.193-.192.423zm.615 1.615q-.69 0-1.152-.462q-.463-.463-.463-1.153V6.115q0-.69.463-1.152q.462-.463 1.152-.463h9.77q.69 0 1.152.463q.463.462.463 1.152v11.77q0 .69-.462 1.152q-.463.463-1.153.463zM10 9.5h4q.213 0 .356-.144q.144-.144.144-.357t-.144-.356Q14.213 8.5 14 8.5h-4q-.213 0-.356.144Q9.5 8.788 9.5 9t.144.356q.144.143.356.143m0 3h4q.213 0 .356-.144q.144-.144.144-.357t-.144-.356Q14.213 11.5 14 11.5h-4q-.213 0-.356.144q-.144.144-.144.357t.144.356q.144.143.356.143m0 3h4q.213 0 .356-.144q.144-.144.144-.357t-.144-.356Q14.213 14.5 14 14.5h-4q-.213 0-.356.144q-.144.144-.144.357t.144.356q.144.143.356.143m-3.5 2.385V5.5v13z'></path></svg>");
    background-repeat: no-repeat;
    background-size: contain;
}

.woocommerce-MyAccount-navigation-link--edit-account {
    margin-bottom: 40px;
    border: 1px solid #f2f2f2;
}

.woocommerce-MyAccount-navigation-link--customer-logout a::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'><path fill='red' d='M5.615 20q-.69 0-1.152-.462Q4 19.075 4 18.385V5.615q0-.69.463-1.152Q4.925 4 5.615 4h5.904q.214 0 .357.143q.143.144.143.357t-.143.357Q11.733 5 11.519 5H5.615q-.23 0-.423.192Q5 5.385 5 5.615v12.77q0 .23.192.423q.193.192.423.192h5.904q.214 0 .357.143q.143.144.143.357t-.143.357q-.143.143-.357.143zm12.445-7.5H9.692q-.213 0-.356-.143q-.144-.144-.144-.357t.144-.357q.143-.143.356-.143h8.368l-1.972-1.971q-.14-.14-.15-.339q-.01-.198.15-.363q.16-.165.354-.168q.195-.003.36.162l2.613 2.614q.243.242.243.565q0 .323-.243.565l-2.613 2.614q-.146.146-.347.153q-.201.006-.367-.159q-.16-.165-.156-.357q.003-.191.162-.35z'></path></svg>");
    background-repeat: no-repeat;
    background-size: contain;
}

.woocommerce-MyAccount-navigation-link--wpf-delete-account a::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'><path fill='%23ff0000' d='M7.615 20q-.666 0-1.14-.475Q6 19.051 6 18.385V6h-.5q-.213 0-.356-.144T5 5.499q0-.212.144-.356Q5.288 5 5.5 5H9q0-.31.23-.54q.23-.23.54-.23h4.46q.31 0 .54.23q.23.23.23.54h3.5q.213 0 .356.144q.144.144.144.357q0 .212-.144.356Q18.713 6 18.5 6H18v12.385q0 .666-.475 1.14q-.474.475-1.14.475zM17 6H7v12.385q0 .269.173.442t.442.173h8.77q.269 0 .442-.173t.173-.442zm-6.692 11q.213 0 .356-.144q.144-.144.144-.356v-8q0-.213-.144-.356T10.307 8q-.213 0-.356.144t-.143.356v8q0 .213.144.356t.356.144m3.385 0q.213 0 .356-.144t.143-.356v-8q0-.213-.144-.356T13.692 8q-.213 0-.356.144q-.144.144-.144.356v8q0 .213.144.356t.357.144M7 6v13z'></path></svg>");
    background-repeat: no-repeat;
    background-size: contain;
}

.woocommerce-MyAccount-navigation-link--customer-logout {
    color: #1ebea5;
}

.woocommerce-MyAccount-navigation-link--wpf-delete-account {
    border: 1px solid #f2f2f2;
}

.woocommerce-MyAccount-navigation-link--wpf-delete-account a {
    color: red;
}

.woocommerce-MyAccount-navigation-link--customer-logout a {
    color: red;
}

.wpfda-submit button {
    height: 50px;
    width: 100%;
    border-radius: 8px;
    background-color: #0069b4;
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.34s ease-in;
    transition: all 0.34s ease-in;
    cursor: pointer;
    padding-right: 20px;
    padding-left: 20px;
}

.wpfda-delete-account-container form i {
    display: none;
}

.input {
    margin-top: 8px;
}

.woocommerce-orders-table__cell {
    margin-top: 8px;
    background: #f2f2f2;
    border-radius: 8px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #333;
    padding: 12px 20px;
    outline: none;
    border: none;
}

.woocommerce-MyAccount-orders .woocommerce-orders-table__cell {
    padding: 10px 12px;
}

.woocommerce-orders-table__cell-order-actions .view {
    padding: 10px 5px;
    border-radius: 8px;
    background-color: #0069b4;
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.34s ease-in;
    transition: all 0.34s ease-in;
    cursor: pointer;
    text-align: center;
    margin: 0px 5px;
    width: 50%;
    font-size: 14px;
}

.woocommerce-orders-table__cell-order-actions a {
    margin: 0px !important;
}

.button.order-again {
    color: #ffffff;
    padding: 10px 5px;
    border-radius: 8px;
    background: #a11f64;
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.34s ease-in;
    transition: all 0.34s ease-in;
    cursor: pointer;
    text-align: center;
    max-width: 140px;
    width: 100%;
    margin: 0px 5px;
    font-size: 14px;
    white-space: nowrap;
}

td.woocommerce-orders-table__cell:last-child {
    background-color: #fff;
    margin-top: 0px;
}

td.woocommerce-orders-table__cell:last-child .button.order-again {
    width: 50%;
    max-width: unset;
    min-width: unset;
}

.woocommerce-orders-table__cell-order-actions {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.woocommerce-orders-table {
    max-width: 100%;
    width: 100%;
}

.woocommerce-orders-table__cell-order-actions .invoice {
    padding: 10px 5px;
    border-radius: 8px;
    background-color: #0069b4;
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.34s ease-in;
    transition: all 0.34s ease-in;
    cursor: pointer;
    text-align: center;
    margin: 0px 5px;
    font-size: 14px;
}

.woocommerce-orders-table__cell-order-actions .pay {
    padding: 10px 5px;
    border-radius: 8px;
    background-color: #0069b4;
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.34s ease-in;
    transition: all 0.34s ease-in;
    cursor: pointer;
    text-align: center;
    margin: 0px 5px;
    font-size: 14px;
}

.woocommerce-orders-table__cell-order-actions .cancel {
    padding: 10px 5px;
    border-radius: 8px;
    background-color: #0069b4;
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.34s ease-in;
    transition: all 0.34s ease-in;
    cursor: pointer;
    text-align: center;
    margin: 0px 5px;
    font-size: 14px;
}

.woocommerce-orders-table__row {
    height: 55px;
}

.woocommerce-orders-table__cell-order-actions .view,
.woocommerce-orders-table__cell-order-actions .invoice {
    display: block;
    width: 170px;
}

/* Аккордион  категории*/

.accordion__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 14px;
    cursor: pointer;
    transition: background-color 0.2s ease-out;
}

.accordion__header:hover {
    color: var(--primary);
}

.accordion__content .accordion__header {
    padding-left: 28px;
}

.accordion__content .accordion__content .accordion__header {
    padding-left: 42px;
}

.accordion>.accordion__item>.accordion__header {
    /* font-weight: bold; */
}

.accordion>.accordion__item>.accordion__header:hover {
    color: var(--primary);
}

.accordion__header::after {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    margin-left: auto;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 14px;
    content: "";
    transition: transform 0.2s ease-out;
}

.accordion__item_show>.accordion__header::after,
.accordion__item_slidedown>.accordion__header::after {
    transform: rotate(-180deg);
}

.accordion__content {
    display: flex;
    flex-direction: column;
    background: #fff;
}

.accordion__content>a {
    position: relative;
    display: block;
    padding: 7px 14px 7px 28px;
    text-decoration: none;
    background-color: #fff;
}

.accordion__content .accordion__content>a {
    padding-left: 42px;
}

.accordion__content .accordion__content .accordion__content>a {
    padding-left: 56px;
}

.accordion__body .accordion__content>a:hover {
    color: var(--primary);
}

.accordion__item:not(.accordion__item_show)>.accordion__body {
    display: none;
}

/*Стили фильтра*/

.shop__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.shop__wrap {
    display: grid;
    grid-template-columns: 300px auto;
    gap: 24px;
}

.filter {
    width: 300px;
    background-color: var(--white);
    transition: all 0.4s ease-in-out;
}

.wpcf7-list-item-label {
    line-height: 18px;
}

.woocommerce-checkout-review-order-table {
    margin-bottom: 20px;
    border-radius: var(--radius);
    border: 0.5px solid var(--grey);
    font-size: 12px;
    display: none;
}

.woocommerce-checkout-review-order-table tr {
    padding: 5px 10px;
}

.woocommerce-checkout-review-order-table .order-total td strong {
    font-size: 14px;
    white-space: nowrap;
}

.woocommerce-checkout-review-order-table tr td {
    padding: 5px 10px;
}

.woocommerce-checkout-review-order-table tbody tr td {
    padding: 5px;
    border-bottom: 0.5px solid var(--grey);
}

.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
    padding-top: 10px !important;
    padding-bottom: 10px;
}

.woocommerce-checkout-review-order-table .product-total {
    text-align: right;
}

.woocommerce-thankyou-order-received {
    margin-bottom: 10px;
}

.thankyou_order_section {
    margin-bottom: 10px;
}

.thankyou_order_section ul li {
    margin-bottom: 5px;
}

.woocommerce-order-details button {
    padding: 10px 0;
    color: var(--primary);
}

.woocommerce-order-details__title {
    margin-bottom: 20px;
}

.woocommerce-order-details {
    margin-top: 20px;
}

.header__logo {
    max-width: 130px;
}

#tr-_billing_wooccm11 {
    margin-top: 10px;
    display: block;
}

.item__price-wrap ins {
    order: -1;
    text-decoration: none;
}

.item__price-wrap {
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    color: var(--black);
}

.item__price-wrap del {
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    color: #808080;
}

.product__price ins {
    font-weight: 700;
    font-size: 28px;
    line-height: 1;
    color: var(--primary);
    order: -1;
    text-decoration: none;
}

.product__price ins {
    order: -1;
    text-decoration: none;
}

.product__price {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 28px;
    line-height: 1;
    color: var(--primary);
}

.product__price del {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #808080;
    font-weight: 400;
}

.woocommerce-table--order-details {
    margin-bottom: 20px;
    margin-top: 20px;
    border-radius: var(--radius);
    border: 0.5px solid var(--grey);
}

.woocommerce-table--order-details tr {
    padding: 10px;
}

.woocommerce-table--order-details tr td {
    padding: 10px;
}

.woocommerce-table--order-details tbody tr td {
    padding: 10px;
    border-bottom: 0.5px solid var(--grey);
}

.woocommerce-table--order-details tbody .product-total {
    text-align: right;
}

.product__list_four {
    grid-template-columns: repeat(4, 1fr);
}

.filter__items a {
    text-transform: lowercase;
}

.shop .title-l {
    text-transform: lowercase;
}

.title-shop {
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 700;
}

.no-subcategories .accordion__header::after {
    display: none;
}

.current-category-color {
    color: #2c82c9;
    /* Замените этот цвет на нужный */
}

.woocommerce-order-details__title {
    display: none;
}

.woocommerce-MyAccount-content p mark {
    background-color: #fff !important;
}

.assist__btn {
    margin-top: 8px;
}

.assist .btn-2 {
    border-color: var(--white);
}

.modal {
    display: none;
}

wc-order-attribution-inputs {
    display: none !important;
}

.header__cart-count {
    overflow: hidden;
}

.entry-content {
    margin-top: 30px;
}

.blog-content__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    font-feature-settings: "pnum" on, "lnum" on;
    color: #222222;
}

.blog-content__text p {
    margin-bottom: 10px;
}

.login__form-field.submit__form-field {
    margin-top: 7px;
}

.pa-message,
.woocommerce-message,
.woocommerce-error li {
    background-color: var(--tertiary);
    padding: 1em 2em;
    border-radius: 5px;
    margin: 0.5em 0;
}

.woocommerce-message:focus {
    outline: none;
}

.blog-content__text h2 {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 20px;
    margin-top: 30px;
    font-weight: 600;
}

.blog-content__text h3,
.blog-content__text h1 {
    font-size: 28px;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 30px;
}

.blog-content__text h4 {
    font-size: 26px;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 30px;
}

.blog-content__text h5 {
    font-size: 24px;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 30px;
}

.sold-product {
    border-color: #ffa900;
    color: #ffa900;
}

.have-product {
    border-color: #28ca00;
    color: #28ca00;
}

.hit .title-l {
    margin-bottom: 30px;
}

.section.promo .title-l {
    margin-bottom: 40px;
}

.form__inner p {
    position: relative;
}

.wpcf7-spinner {
    position: absolute !important;
}

.form__descr {
    margin-top: 10px;
    font-size: 12px;
}

.modal__text {
    font-size: 16px;
    line-height: 1.5;
}

.modal__text p {
    margin-bottom: 10px;
}

.modal__text h5 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 20px;
}

.modal__policy {
    max-width: 900px !important;
    width: 100% !important;
    height: 90vh !important;
}

.related__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0px -12px;
}

.related__grid .item__buy form {
    width: 100%;
}

.related__grid .product__item-cart {
    width: 144px;
}

.smart-captcha.wpcf7-not-valid {
    padding-right: 0px !important;
}

.smart-captcha {
    min-width: 260px !important;
}

.woocommerce-form__input-checkbox {
    margin-left: 0px;
    border-radius: 3px;
}

.cart__sidebar-btn.btn:hover {
    color: #000f1b;
}

.cart-pdf-button {
    text-align: center;
    margin-top: 20px;
    width: 100%;
}

.cart-pdf-button:hover {
    color: #000f1b;
}

.order-cart__checkout {
    order: -2;
}

.order-cart__checkout table th {
    border: 1px solid #e5e5e5;
    color: #636363;
    padding: 10px;
    text-align: left;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 600;
}

.order-cart__checkout td.product-quantity strong {
    font-weight: 400;
}

.order-cart__checkout table td {
    border: 1px solid #e5e5e5;
    color: #636363;
    padding: 10px;
    text-align: left;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 400;
}

.order-cart__checkout table {
    width: 100%;
}

.order-cart__checkout {
    margin-bottom: 30px;
}

.order-cart__checkout td.product-name {
    font-size: 14px;
}

.woocommerce-order-details .order-cart__checkout td.product-name {
    font-size: 14px;
}

.product-name .backorder_notification {
    display: none;
}

/* hide tax-pa_hit-prodazh terms name */
.tax-pa_hit-prodazh .breadcrumb_last,
.tax-pa_hit-prodazh .title-l {
    display: none;
}

a {
    color: var(--primary);
}

a:hover {
    color: var(--primary);
}

/*inn suggestions*/
.result {
    width: 50%;
    min-width: 300px;
}

.row {
    margin-top: 1em;
}

.row label {
    display: block;
    min-width: 10em;
}

.row input,
.row textarea {
    width: 100%;
}

/*\inn suggestions*/

#shipping {
    font-size: 1.2em;
    font-weight: 500;
}

#shipping_method {
    font-size: 1.1rem;
    font-weight: 400;
}

#shipping_method li {
    margin: 0.5em 0;
    display: flex;
    gap: 0.5em;
}

#shipping_method li input[type="radio"] {
    width: 15px;
    height: 15px;
}

#shipping {
    font-size: 1.2em;
    font-weight: 500;
}

.payment_methods {
    font-size: 1.1rem;
    font-weight: 400;
}

.payment_methods li {
    margin: 0.5em 0;
    display: flex;
    gap: 0.5em;
    flex-wrap: wrap;
}

.payment_methods li input[type="radio"] {
    width: 15px;
    height: 15px;
}

/*hide payment methods*/
/* .wc_payment_methods {
	display: none;
} */

/*hide delivery in cart page*/
.cart_totals .woocommerce-shipping-totals {
    display: none;
}

input.disabled {
    border-color: rgba(118, 118, 118, 0.3);
    background-color: #eee;
    color: #555;
    cursor: not-allowed;
    z-index: -10;
}

.payment_box.payment_method_bacs {
    width: 100%;
    font-size: 14px;
    color: #677077;
}

.payment_box.payment_method_cod {
    width: 100%;
    font-size: 14px;
    color: #677077;
}

.woocommerce-checkout-payment h4 {
    font-size: 1.2em;
    font-weight: 500;
}

/*restyle yandex PP*/
div.SmartCaptcha-Shield {
    padding: 10px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    z-index: 10;
}

a.SmartCaptcha-Shield-PrivacyLink:hover,
a.SmartCaptcha-Shield-Anchor:hover {
    color: var(--white);
}

a.SmartCaptcha-Shield-PrivacyLink {
    font-size: 10px;
    line-height: 1.2em;
}

a.SmartCaptcha-Shield-Anchor svg {
    width: 20px;
    height: 20px;
}

div.SmartCaptcha-Shield {
    right: -100px !important;
    flex-direction: row;
    top: unset !important;
    bottom: 230px !important;
    transform: scale(0.8);
}

.order-box {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    font-size: 16px;
    line-height: 1.2;
    gap: 10px;
}

select.orderby {
    display: block;
    border: none;
    border-bottom: 1px solid #adb5bd;
}

select.orderby:focus {
    outline: none;
    border: none;
}

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


select.orderby option {
    font-weight: normal;
}

*[dir="rtl"] select.orderby,
:root:lang(ar) select.orderby,
:root:lang(iw) select.orderby {
    background-position: left .7em top 50%, 0 0;
    padding: .6em .8em .5em 1.4em;
}

@media (max-width: 768px) {
    div.SmartCaptcha-Shield {
        padding: 8px;
    }

    a.SmartCaptcha-Shield-PrivacyLink {
        font-size: 10px;
    }

    a.SmartCaptcha-Shield-Anchor svg {
        width: 15px;
        height: 15px;
    }
}

/*restyle my-account*/
.wpfda-submit button {
    background-color: var(--primary);
}

.section.checkout .checkout__content {
    display: flex;
    flex-direction: column;
}

.section.checkout .cart__sidebar {
    width: 100%;
    max-width: 100%;
}

.section.checkout .woocommerce-checkout-review-order-table {
    width: 100%;
}

.woocommerce-checkout-review-order-table .order-total td:last-child {
    text-align: right;
}

.woocommerce-table__line-item .wc-item-meta {
    display: none;
}

.woocommerce-MyAccount-content .woocommerce-pagination {
    margin-top: 12px;
}

input[name="user_name"] {
    text-transform: capitalize;
}

input[name="org_name"] {
    text-transform: capitalize;
}

.woocommerce-billing-btn-send {
    max-width: 300px;
    cursor: pointer;
}

.item__all-product {}

.item__all-product .item__inner {
    height: 443px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    position: relative;
}

.item__all-product .item__inner a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer__copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login__form p a[href="/registration/"] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 200px;
    height: 50px;
    background: var(--primary);
    background: linear-gradient(45deg, var(--primary), var(--primary));
    color: #fff;
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    letter-spacing: 0.5px;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    padding: 0 25px;
    transition: all 0.32s linear;
    margin-top: 10px;
}

.login__form p a[href="/registration/"]:hover {
    filter: brightness(120%);
    background: white;
    color: #a11f64 !important;
}