@charset "UTF-8";

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(77.11deg, #cf5087  0%,  #ff7383 100%);
    color: #fff;
    padding: 8px 0;
    position: relative;
    z-index: 1000;
}

.announcement-bar__content {
    display: flex;
    align-items: center;
    justify-content: center;
    /*max-width: 1200px;*/
    margin: 0 auto;
    padding: 0 40px 0 15px;
    position: relative;
}

.announcement-bar__text {
    flex: 1;
    font-size: 14px;
    line-height: 1;
    text-align: center;
}

.announcement-bar__text {
    overflow: hidden;
    width: 100%;
}
.announcement-bar__scroll {
    display: inline-flex;
    white-space: nowrap;
    animation: announcement-scroll 145s linear infinite;
    will-change: transform;
}
.announcement-bar__scroll-item {
    padding-right: 50px;
}
@keyframes announcement-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.announcement-bar__close {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 5px 10px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.announcement-bar__close:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .announcement-bar__text {
        font-size: 12px;
    }

    .announcement-bar__close {
        font-size: 20px;
        right: 5px;
    }
}

:root {
    --borad-10: 10px;
    --color-main: #211825;
    --color-accent: #ff7383;
    --color-main-bg: #f9f9f9;
    --color-not-available: #979797;
    --gradient-accent: linear-gradient(77.11deg, #f1c3c8 0%, #f19999 100%);
    --gradient-accent-revers: linear-gradient(
        77.11deg,
        #f1c3c8 0%,
        #f19999 100%
    );
    --gradient-footer-bg: linear-gradient(
        272.2deg,
        #3a3a3a 2.05%,
        #2c2b2b 100%
    );
}

*,
*::before,
*::after {
    outline: none;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

* {
    scrollbar-color: var(--color-accent) var(--color-main-bg);
    /* «цвет ползунка» «цвет полосы скроллбара» */
    scrollbar-width: thin;
    /* толщина */
}

* ::-webkit-scrollbar {
    width: 10px;
}

* ::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: var(--color-main-bg);
}

* ::-webkit-scrollbar-thumb {
    border: 1px solid var(--color-main-bg);
    border-radius: 10px;
    background-color: var(--color-accent);
}

* ::-webkit-scrollbar-thumb:hover {
    background-color: #6ea725;
}

html {
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    padding-top: 135px;
    height: 100%;
    font-family: 'montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.45;
    color: var(--color-main);
    background: var(--color-main-bg);
}

.home {
    padding-top: 100px !important;
}

#ocfilter {
    display: flex;
    flex-direction: column;
}

#option-m {
    order: 10;
}

.collapse hr {
    display: none !important;
}

.ocfilter-option {
    margin-bottom: 0;
}

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

.content {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    overflow: hidden;
}

.title__origi {
    padding: 6px;
    font-size: 11px;
    font-weight: 300;
    text-align: center;
    min-height: 2.1em;
}

.title__origi__p {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
}

.footer {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.container {
    margin: 0 auto;
    padding: 0 0px;
    max-width: 1200px;
}

h1 {
    font-size: 50px;
    line-height: 1.1;
    text-align: center;
}

a {
    display: inline-block;
    text-decoration: none;
    color: var(--color-main);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

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

button {
    cursor: pointer;
}

ol,
ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.section-title {
    margin-top: 0;
    font-weight: 500;
    font-size: 48px;
    text-align: center;
}

.section-title--h3 {
    margin-top: 0;
    font-weight: 600;
    font-size: 36px;
    text-align: center;
}

.sticky {
    position: fixed !important;
}

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

.glob__btn {
    border: 2px solid var(--color-accent);
    border-radius: 50px;
    padding: 12px;
    width: 100%;
    height: 50px;
    max-width: 225px;
    font-weight: 600;
    text-align: center;
    color: var(--color-accent);
    background-color: transparent;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.glob__btn:hover {
    color: #fff;
    background-color: var(--color-accent);
}

.back-to-top {
    position: fixed;
    right: 15px;
    bottom: 50px;
    display: none;
}

.back-to-top__link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid var(--color-accent);
    border-radius: 10px;
    width: 50px;
    height: 50px;
    text-align: center;
    text-decoration: none;
    color: #c0301c;
    background-color: #fff;
}

.back-to-top__link::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 25px;
    height: 15px;
    background: url('/catalog/view/theme/default/image/icons/chevron-up.svg')
        no-repeat center/cover;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.back-to-top__link:hover {
    -webkit-box-shadow: 0 0 5px 7px rgba(210 12 41 / 27%);
    box-shadow: 0 0 5px 7px rgba(210 12 41 / 27%);
    color: #fff;
    background-color: var(--color-accent);
}

.back-to-top__link:hover::after {
    background-image: url('/catalog/view/theme/default/image/icons/chevron-up-white.svg');
}

.page__title-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    /*  height: 120px;*/
    margin-top: 50px;
    text-align: center;
    color: #fff;
    /*  background: linear-gradient( rgb(255 144 189 / 46%), #f2b8d28c ), url(/catalog/view/theme/default/image/page-bg.jpg) no-repeat center/cover;*/
}

.page__title {
    position: relative;
    z-index: 2;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    /*  color: #fff;*/
    color: var(--color-main);
}

.breadcrumbs {
    position: relative;
    z-index: 2;
}

.new__st__w {
    background-image: url(/image/newsvgq/kosqq.svg);
    background-size: contain;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
}

.cart:hover .new__st__w {
    background-image: url(/image/newsvgq/kosqq2.svg);
    background-size: contain;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
}

.breadcrumbs__list li {
    display: inline-block;
}

.breadcrumbs__list li + li {
    position: relative;
    padding-left: 25px;
}

.breadcrumbs__list li + li::before {
    content: '/';
    position: absolute;
    left: 8px;
    top: 50%;
    /*  color: #fff;*/
    color: var(--color-main);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

/*
.breadcrumbs__list li a {
  color: #fff;
}
*/
.breadcrumbs__list li a {
    border-bottom: 1px solid transparent;
}

.breadcrumbs__list li a:hover {
    border-bottom: 1px solid #ff7383;
    color: #ff7383;
}

.breadcrumbs__list li:last-child a,
.breadcrumbs__list li:last-child span {
    /*  color: #fff;*/
    color: var(--color-main);
}

.page-nav {
    position: fixed;
    top: 100px;
    z-index: 14;
    width: 100%;
    -webkit-box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.25);
    background: var(--color-main-bg) !important;
}

.page-nav__categories-menu .categories-menu__item {
    margin: 0;
    /* padding: 5px 10px !important; */
    max-width: 185px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    background: var(--color-main-bg);
}

.page-nav__categories-menu .categories-menu__item svg {
    position: absolute;
    left: 0;
    top: 50%;
    margin: 0;
    width: 35px !important;
    height: 35px !important;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.page-nav__categories-menu .categories-menu__item .categories-menu__link {
    position: relative;
    display: block;
    padding: 10px 0 10px 40px;
}

.page-nav__categories-menu .categories-menu__item .categories-menu__title {
    font-size: 15px !important;
    line-height: 17px !important;
}

.page-nav__drop-item {
    padding-right: 30px !important;
}

.page-nav__drop-item::before {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    width: 16px;
    height: 11px;
    background: url('/catalog/view/theme/default/image/icons/shevron-down.svg')
        no-repeat center/cover;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.page-nav__drop-item:hover::before {
    height: 11px;
    background-image: url('/catalog/view/theme/default/image/icons/shevron-down-white.svg');
    -webkit-transform: rotateX(180deg) translateY(50%);
    transform: rotateX(180deg) translateY(50%);
}

.page-nav__drop-item:hover .page-nav__dropdown {
    padding-top: 20px;
    padding-bottom: 25px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    height: auto;
}

.page-nav__drop-item:hover .page-nav__dropdown-link {
    height: auto;
}

.page-nav__drop-item:hover .page-nav__dropdown-link a {
    padding-top: 12px;
    padding-bottom: 12px;
    font-weight: 600;
    font-size: 16px;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: color 0.3s, background-color 0.3s;
    -o-transition: color 0.3s, background-color 0.3s;
    transition: color 0.3s, background-color 0.3s;
}

.page-nav__drop-item:hover .page-nav__dropdown-link a:hover {
    color: var(--color-accent);
    background-color: #fff;
}

.page-nav__dropdown {
    position: absolute;
    left: 0;
    top: 57px;
    -webkit-columns: 2 auto;
    -moz-columns: 2 auto;
    columns: 2 auto;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    padding: 0 35px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    min-width: 270px;
    min-height: 0;
    height: 0;
    background-color: var(--color-accent);
}

.page-nav__dropdown--brands {
    -webkit-columns: 5 auto;
    -moz-columns: 5 auto;
    columns: 5 auto;
}

.page-nav__dropdown-link {
    overflow: hidden;
    padding: 0;
    height: 0;
    text-align: left;
}

.page-nav__dropdown-link a {
    display: block;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 20px;
    color: #fff;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

.page-nav__dropdown-link a:hover {
    font-weight: 600;
    background-color: var(--color-accent);
}

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

.pagination__list {
    margin: 0 10px;
    padding-bottom: 20px;
}

.pagination__list li {
    display: inline-block;
}

.pagination__link,
.pagination span {
    display: block;
    margin-left: 10px;
    border-radius: 4px;
    padding: 5px 10px;
    font-weight: 400;
    font-size: 20px;
    text-align: center;
}

.pagination__link:hover,
.pagination__link.active,
.pagination span:hover,
.pagination span.active {
    color: #fff;
    background-color: var(--color-accent);
}

.pagination__link.disabled,
.pagination span.disabled {
    background-color: transparent;
    opacity: 0.3;
    cursor: default;
}

.pagination__left::before {
    background: url('/catalog/view/theme/default/image/icons/chevron-left.svg')
        no-repeat center/contain;
}

.pagination__right::before {
    background: url('/catalog/view/theme/default/image/icons/chevron-right.svg')
        no-repeat center/contain;
}

.pagination__left,
.pagination__right {
    position: relative;
    width: 33px;
    height: 33px;
}

.pagination__left::before,
.pagination__right::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 15px;
    height: 15px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.price-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: auto;
    padding-bottom: 10px;
    position: relative;
}

.price-old {
    font-size: 14px;
    line-height: 17px;
    -webkit-text-decoration-line: line-through;
    text-decoration-line: line-through;
    color: rgba(33, 24, 37, 0.3);
    /*    color: rgb(50 198 86);*/
}

.price-current {
    margin-top: auto;
    font-size: 24px;
    line-height: 29px;
}

.price-current-ac {
    /*   color: #ff7383;*/
    color: red;
    font-weight: 600;
}

.header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 15;
    border-bottom: 1px solid var(--color-accent);
    width: 100%;
    background: var(--color-main-bg);
}

.header__inner {
    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;
    padding: 20px 0 14px;
    min-height: 100px;
}

.header__logo img {
    width: 100%;
    height: auto;
    max-width: 107px;
    margin-left: 0px;
}

.header-search-trigger {
    display: none;
    border: none;
    background: none;
}

.header__lang {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: auto;
    margin-right: 10px;
    border-radius: 25px;
    width: 49px;
    height: 49px;
    font-weight: 700;
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 0.56px;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
}

.header__lang-content {
    position: absolute;
    left: -1px;
    top: 30px;
    z-index: 1000;
    display: none;
    margin-top: 13px;
    border: 1px solid var(--color-accent);
    border-top: none;
    border-radius: 0 0 25px 25px;
    padding-bottom: 5px;
    width: calc(100% + 2px);
    background-color: #fff;
}

.header__lang-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    background-color: #fff;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.header__lang-link:hover {
    color: #fff;
    background-color: var(--color-accent);
}

.header__lang-link:hover.header-top__lang-info {
    color: var(--color-main);
    background-color: #fff;
}

.header__lang.active {
    border-bottom: none;
    border-radius: 25px 25px 0 0;
}

.header__lang-link.active:hover {
    color: var(--color-main);
    background-color: #fff;
}

.feedback-popup {
    margin: 0 auto;
    max-width: 470px;
}

.feedback-popup__body {
    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;
    border-radius: var(--borad-10);
}

.feedback-popup__form,
.feedback-popup__confirm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}

.feedback-popup form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: var(--borad-10);
    padding: 43px 50px;
    width: 100%;
    min-height: 400px;
    max-width: 470px;
    -webkit-box-shadow: 0 8px 25px 10px rgba(33, 24, 37, 0.1);
    box-shadow: 0 8px 25px 10px rgba(33, 24, 37, 0.1);
    background: #fff;
}

.feedback-popup__title {
    margin-top: 0;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
}

.feedback-popup__descr {
    margin: 0 auto 20px;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}

.feedback-popup__field {
    position: relative;
    margin-bottom: 25px;
}

.feedback-popup input {
    display: block;
    border: none;
    border-bottom: 1px solid rgba(33, 24, 37, 0.6);
    padding: 10px 0;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: none;
}

.feedback-popup input:required:valid:not(:-moz-placeholder-shown) {
    border-color: #008000;
}

.feedback-popup input:required:valid:not(:-ms-input-placeholder) {
    border-color: #008000;
}

.feedback-popup input:required:valid:not(:placeholder-shown) {
    border-color: #008000;
}

.feedback-popup input:required:invalid:not(:-moz-placeholder-shown) {
    border-color: #f00;
}

.feedback-popup input:required:invalid:not(:-ms-input-placeholder) {
    border-color: #f00;
}

.feedback-popup input:required:invalid:not(:placeholder-shown) {
    border-color: #f00;
}

.feedback-popup
    input:invalid:not(:-moz-placeholder-shown)
    + .feedback-form__error {
    position: absolute;
    bottom: -15px;
    display: block;
}

.feedback-popup
    input:invalid:not(:-ms-input-placeholder)
    + .feedback-form__error {
    position: absolute;
    bottom: -15px;
    display: block;
}

.feedback-popup input:invalid:not(:placeholder-shown) + .feedback-form__error {
    position: absolute;
    bottom: -15px;
    display: block;
}

.feedback-popup__error {
    display: none;
    margin-top: 3px;
    font-size: 10px;
    line-height: 12px;
    color: rgba(255, 0, 0, 0.6);
}

.feedback-popup__btn {
    display: block;
    margin: 25px auto 0;
    background-color: #fff;
}

.feedback-popup__btn:hover {
    background-color: var(--color-accent);
}

.feedback-popup__text {
    margin: auto;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
}

.feedback-popup .feedback-popup__confirm {
    display: none;
}

.feedback-popup .mfp-close {
    opacity: 0;
}

.callback {
    position: relative;
    margin: auto;
    padding-left: 55px;
}

@media (max-width: 780px) {
    .callback {
        position: relative;
        margin: 0px;
        padding-left: 55px;
    }
    .products__item-title {
    }
    #review > div.container_tw > img {
        display: none;
    }
}

.callback-mobile {
    display: none !important;
}

.callback svg {
    position: absolute;
    left: 0;
    top: 0;
    fill: var(--color-accent);
}

.callback-link {
    display: block;
    line-height: 20px;
    /* cursor: pointer; */
}

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

.callback-phone {
    font-weight: 600;
    font-size: 15.5px;
    line-height: 22px;
}

.search-form {
    position: relative;
    margin: auto;
}

.search-form__input {
    border: 1px solid var(--color-accent);
    border-radius: 6px;
    padding: 10px 20px;
    padding-right: 70px;
    width: 270px;
    height: 51px;
}

.search-form__btn {
    position: absolute;
    right: 20px;
    top: 50%;
    border: none;
    background: none;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
}

.search-form__icon {
    width: 22.5px;
    height: 23.2px;
}

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

.account-box img {
    display: block;
}

.account-link,
.cart-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;
    font-size: 12px;
}

.account-link img,
.cart-link img {
    width: 30px;
    height: 30px;
}

.account-link {
    position: relative;
    margin-right: 20px;
    padding-right: 10px;
    padding-left: 10px;
    text-align: center;
}

.account-link::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    width: 1px;
    height: 30px;
    background-color: var(--color-accent);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.account.login-off .account-link-enter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.account.login-off .account-link-cabinet {
    display: none;
}

.account.login-on .account-link-enter {
    display: none;
}

.account.login-on .account-link-cabinet {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.cart.cart-empty .cart-quantity {
    display: none;
}

.cart-link {
    position: relative;
    /* margin-right: 30px; */
    margin-left: 20px;
}

.cart-link .cart-quantity {
    position: absolute;
    right: 7px;
    top: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 25px;
    padding-right: 2px;
    padding-left: 2px;
    height: 15px;
    min-width: 15px;
    font-size: 9px;
    line-height: 12px;
    text-align: center;
    color: #fff;
    background-color: var(--color-accent);
}

.burger-menu {
    display: none;
}

.navbar-mobile {
    display: none;
}

.home-nav {
    display: none;
}

.categories {
    position: relative;
    background: linear-gradient(rgb(118 123 142 / 75%), #d0032247),
        url(/catalog/view/theme/default/image/desktop-bg.jpg) no-repeat
            center/cover rgb(224 224 224 / 50%);
}

.categories::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: none;
    background-color: rgba(33, 24, 37, 0.5);
}

.categories__inner {
    position: relative;
    z-index: 2;
    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;
    height: 85vh;
}

.categories__title {
    margin-top: 0;
    font-weight: 500;
    color: #fff;
}

.categories__btn-box {
    display: none;
}

.categories-menu {
    width: 100%;
}

.categories-menu__list {
    top: 110px;
    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;
    list-style: none;
    padding-left: 0;
    width: 100%;
    max-width: 1170px;
}

.categories-menu__list.sticky {
    z-index: 100;
}

.categories-menu__list.sticky .categories-menu__item {
    padding: 15px 0 5px;
    -webkit-box-shadow: 0 0 5px 7px rgb(210 12 41 / 27%);
    box-shadow: 0 0 5px 7px rgb(210 12 41 / 27%);
}

.categories-menu__list.sticky svg {
    margin-bottom: 5px;
    width: 43px;
    height: 50px;
}

.categories-menu__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px;
    width: 100%;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    max-width: 195px;
    text-align: center;
    background: var(--color-main-bg);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.categories-menu__item svg {
    position: absolute;
    left: 0;
    top: 50%;
    margin: 0;
    width: 35px !important;
    height: 35px !important;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.categories-menu__item svg path {
    fill: var(--color-accent);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.categories-menu__item:hover {
    background: var(--color-accent);
    cursor: pointer;
}

.categories-menu__item:hover > a {
    color: #fff;
}

.categories-menu__item:hover path {
    fill: #fff;
}

.categories-menu__item.no-icon .categories-menu__link {
    padding: 10px;
    padding-left: 17.5px;
}

.categories-menu__item.no-icon .categories-menu__link svg {
    display: none;
}

.categories-menu__title {
    margin-top: 0;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
}

.categories-menu__link {
    position: relative;
    display: block;
    padding: 10px 0 10px 40px;
}

.swiper-container {
    width: 100%;
    height: 100%;
    margin-top: 145px;
}

.desktop-slider__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100vw;
    height: 85vh;
    color: #fff;
    background: no-repeat center / cover;
}

.desktop-slider__item * {
    color: inherit;
}

.desktop-slider__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.desktop-slider__link {
    display: block;
}

/*.desktop-slider__item--first {
  background-image: url("/catalog/view/theme/default/image/newbg1.jpeg");
}

.desktop-slider__item--second {
  background-image: url("/catalog/view/theme/default/image/newbg2.jpeg");
}

@media(max-width: 900px) {
  .desktop-slider__item--first {
  background-image: url("/catalog/view/theme/default/image/newbg1-mob.jpeg");
}

.desktop-slider__item--second {
  background-image: url("/catalog/view/theme/default/image/newbg2-mob.jpeg");

}
}

.desktop-slider__item--third {
  background-image: url("/catalog/view/theme/default/image/newbg.jpeg");
}*/

.desktop-slider__inner {
    padding-right: 10%;
    padding-left: 10%;
}

.desktop-slider__content {
    max-width: 440px;
}

.desktop-slider__title {
    margin-bottom: 50px;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    text-transform: uppercase;
}

.desktop-slider__list-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 40px;
    max-width: 270px;
    font-family: 'Montserrat';
    font-size: 20px;
    line-height: 24px;
}

.desktop-slider__list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 23.88px;
    height: 20.25px;
    background: url('/catalog/view/theme/default/image/icons/check.svg')
        no-repeat center/cover;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    color: var(--color-accent);
}

.advantages {
    padding: 45px 0;
    display: none;
}

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

.advantages__item {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 370px;
    flex: 0 1 370px;
    overflow: hidden;
    border-radius: var(--borad-10);
    padding: 20px 120px 30px 30px;
    min-height: 230px;
    color: #fff;
    background: var(--gradient-accent) no-repeat center/cover;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.advantages__item::before {
    content: '';
    position: absolute;
    width: 116px;
    height: 116px;
    background: no-repeat center / contain;
}

.advantages__item:hover {
    -webkit-box-shadow: 0 8px 25px 10px rgba(33, 24, 37, 0.2);
    box-shadow: 0 8px 25px 10px rgba(33, 24, 37, 0.2);
    background: var(--gradient-accent-revers);
}

.advantages__item + .advantages__item {
    margin-left: 15px;
}

.advantages__item--assort::before {
    right: -12px;
    bottom: -16px;
    background-image: url('/catalog/view/theme/default/image/icons/adv-assort.svg');
}

.advantages__item--loyal::before {
    right: -30px;
    bottom: -30px;
    background-image: url('/catalog/view/theme/default/image/icons/adv-percent.svg');
}

.advantages__item--delivery::before {
    right: 0;
    bottom: 0;
    background-image: url('/catalog/view/theme/default/image/icons/adv-track.svg');
}

.advantages__item-title {
    margin-top: 0;
    margin-bottom: 14px;
    font-weight: 600;
    font-size: 30px;
    color: #fff;
}

.advantages__item-descr {
    margin: 0;
    font-weight: 600;
    font-size: 18px;
}

.filters-btn {
    margin: 0 15px 50px;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0 15px 5px;
    background: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
}

.new__podborka {
    margin: 0 15px 50px;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0 15px 5px;
    background: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
    border-bottom-color: var(--color-accent);
    color: var(--color-accent);
}

.filters-btn:hover,
.filters-btn.mixitup-control-active {
    border-bottom-color: var(--color-accent);
    color: var(--color-accent);
}

.products {
    padding: 57px 0 30px;
}

.products__title {
    margin: 0;
    margin-bottom: 35px;
    text-align: center;
}

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

.products__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 1px;
    margin-left: -30px;
}

.products .products__item,
.product-viewed__items .products__item,
#product-search .products__item {
    -ms-flex-preferred-size: calc(25% - 30px);
    flex-basis: calc(25% - 30px);
}

.products__item,
#myModal .products__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: calc(33.33% - 30px);
    flex-basis: calc(33.33% - 30px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 50px;
    margin-left: 30px;
    border-radius: 20px;
    font-weight: 500;
    background: #fff;
    -webkit-transition: -webkit-box-shadow 0.3s;
    transition: -webkit-box-shadow 0.3s;
    -o-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s;
    transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}

.products__item .discount-value,
.products__item .hit-marker-value,
.products__item .new-marker-value,
.products__item .price-old {
    position: absolute;
    top: -11px;
}

.products__item .discount-value,
.products__item .hit-marker-value,
.products__item .new-marker-value {
    position: absolute;
    right: 0;
    top: 10px;
    z-index: 1;
    border-radius: 20px 0 20px 0px;
    padding: 3px 10px;
    color: #fff;
    margin-right: 10px;
}

.products__item .discount-value {
    background: var(--color-accent);
}

.products__item .hit-marker-value {
    background: var(--color-accent);
}

.products__item .new-marker-value {
    background: var(--color-accent);
}

.products__item:hover {
    -webkit-box-shadow: 0 8px 25px 10px rgba(33, 24, 37, 0.1);
    box-shadow: 0 8px 25px 10px rgba(33, 24, 37, 0.1);
}

.products__item.discount .discount-value,
.products__item.discount .price-old {
    display: block;
}

.products__item.hit-marker .hit-marker-value {
    display: block;
}

.products__item.new-marker .new-marker-value {
    display: block;
}

.products__item.not-available .products__item-image {
    opacity: 0.1;
}

.products__item.not-available .price-current {
    font-size: 16px;
}

.products__item.not-available .not-available--money {
    display: none;
}

.products__item.not-available .cart svg path {
    fill: var(--color-not-available);
}

.products__item.not-available .cart:hover {
    border-color: var(--color-not-available);
    background-color: #fff;
}

.products__item.not-available .cart:hover svg path {
    fill: var(--color-not-available);
}

.products__item-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 10px 10px 0 0;
    height: 270px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* .products__item-image::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 70px;
  width: 80px;
  height: 20px;
  background: url("/catalog/view/theme/default/image/icons/logo.svg") no-repeat center/cover;
}
*/

.products__item-title {
    display: -webkit-box;
    padding: 10px;
    text-align: center;
}
.products__item-title a {
    height: 3.9em;
    overflow: hidden;
    line-height: 1.3em;
    white-space: normal;
    font-size: 20px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.title__origi a {
    height: 2.2em;
    overflow: hidden;
    line-height: 1.2em;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.products__item-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: auto;
    padding: 0 20px 25px;
    margin-top: 0;
}

.products__item .rating {
    margin-top: 0;
    padding: 0 20px;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    align-items: center;
    height: 30px;
}

.products__item-bottom .cart {
    margin-top: auto;
    border: 2px solid var(--color-accent);
    border-radius: 50px;
    width: 52px;
    height: 52px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.products__item-bottom .cart a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    cursor: pointer;
}

.products__item-bottom .cart svg {
    width: 25px;
    height: 23px;
}

.products__item-bottom .cart svg path {
    fill: var(--color-accent);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.products__item-bottom .cart:hover {
    border-color: var(--color-accent);
    background-color: var(--color-accent);
}

.products__item-bottom .cart:hover svg path {
    fill: #fff;
}

.follow {
    margin-bottom: -1px;
    background: linear-gradient(rgb(118 123 142 / 0%), #d003222b),
        url('/catalog/view/theme/default/image/follow-bg.jpg') no-repeat
            center/cover;
    display: none;
}

.follow__inner {
    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: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 590px;
    max-width: 370px;
    color: #fff;
}

.follow__title {
    margin-top: 0;
    margin-bottom: 35px;
    font-weight: 600;
    font-size: 34px;
    line-height: 41px;
    text-transform: uppercase;
}

.follow__descr {
    margin-bottom: 60px;
}

.follow__socials-link {
    margin-right: 15px;
}

.follow__socials-link svg {
    width: 35px;
    height: 35px;
}

.follow__socials-link svg:hover path {
    fill: var(--color-accent);
}

.news {
    padding-top: 30px;
    padding-bottom: 35px;
}

.news__title {
    margin-top: 0;
    margin-bottom: 48px;
    font-weight: 500;
    font-size: 48px;
    text-align: center;
}

.news__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    margin-bottom: 16px;
    margin-left: -30px;
}

.news__item {
    max-width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 calc(50% - 30px);
    flex: 1 0 calc(50% - 30px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 30px;
    margin-left: 30px;
    border-radius: var(--borad-10);
    background: #fff;
    -webkit-transition: -webkit-box-shadow 0.3s;
    transition: -webkit-box-shadow 0.3s;
    -o-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s;
    transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}

.news__item:hover {
    -webkit-box-shadow: 0 8px 25px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 25px 10px rgba(0, 0, 0, 0.1);
}

.news__item-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 10px 10px 0 0;
    height: auto;
    max-width: 100%;
}

.news__item-image img {
    display: block;
    width: 100%;
    height: auto;
}

.news__item-image a {
    display: block;
}

.news__item-date {
    position: absolute;
    left: 0;
    bottom: 20px;
    border-radius: 0 5px 5px 0;
    padding: 5px 15px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    background-color: var(--color-accent);
}

.news__item-title {
    margin-top: 0;
    margin-bottom: 5px;
    padding: 5px 35px;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
}

.news__item-text {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 15px;
    padding: 5px 35px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.news__item-btn {
    margin-top: auto;
    margin-bottom: 25px;
    padding: 0 35px;
    font-weight: 600;
    text-align: right;
    color: var(--color-accent);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.news__item-btn a {
    border-bottom: 2px solid transparent;
    color: var(--color-accent);
}

.news__item-btn a:hover {
    border-color: var(--color-accent);
}

.about {
    padding-top: 10px;
    padding-bottom: 15px;
}

.about__title {
    margin-top: 0;
    margin-bottom: 30px;
}

.about__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 25px;
}

.about__text {
    display: none;
    width: 49%;
    max-width: 570px;
}

.about__btn {
    border-bottom: 2px solid transparent;
    padding: 15px 5px;
    font-weight: 600;
    color: var(--color-accent);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.about__btn:hover {
    border-color: var(--color-accent);
}

.footer {
    padding: 57px 0 50px;
    background: var(--gradient-footer-bg);
}

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

.footer__column {
    padding: 0;
    height: auto;
    color: #fff;
}

.footer__home {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 10px;
    width: 270px;
}

.footer__logo {
    width: 100%;
    height: 80px;
    max-width: 155px;
}

.footer__descr {
    margin-top: 20px;
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
}

.footer__copy {
    margin: auto 0 15px;
    font-size: 14px;
}

.footer__info {
    width: 300px;
}

.footer__column-title {
    margin-top: 0;
    margin-bottom: 18px;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    text-transform: uppercase;
    color: var(--color-accent);
}

.footer__list {
    list-style: none;
    padding-left: 0;
}

.footer__list li {
    margin-bottom: 15px;
}

.footer__link {
    font-weight: 600;
    color: #fff;
}

.footer__info-list {
    max-width: 290px;
}

.footer__category {
    margin-right: 50px;
    max-width: 240px;
}

.footer__category-list {
    -webkit-columns: 2 auto;
    -moz-columns: 2 auto;
    columns: 2 auto;
}

.one__click {
    position: absolute;
    top: 30px;
    z-index: 1;
    padding: 3px 10px;
    color: #000;
    margin-right: 10px;
    margin-left: 10px;
}

.footer__contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 30px;
    max-width: 240px;
}

.footer__contacts p {
    margin: 0 0 15px;
}

.footer__phone {
    color: var(--color-accent);
}

.footer__contacts-item--bold {
    font-weight: 600;
}

.footer__socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: auto;
    height: 35px;
    margin-bottom: 15px;
}

.footer__social-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 25px;
    height: 100%;
}

.footer__social-link img {
    width: 35px;
    height: 35px;
}

.footer__social-link svg {
    width: 30px;
    height: 30px;
}

.footer__social-link svg path {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.footer__social-link:hover svg path {
    fill: var(--color-accent);
}

.footer__social-link--insta svg {
    width: 26px;
    height: 26px;
}

.footer__social-link--facebook svg {
    width: 29px;
    height: 29px;
}

.footer__social-link--tiktok svg {
    width: 23px;
    height: 23px;
}

.footer__social-link--telegram svg {
    width: 33px;
    height: 33px;
}

.news-page__news {
    padding-bottom: 120px;
}

.article-page__title-box {
    margin: 0 auto;
    border-radius: 10px 10px 0 0;
    padding: 0 30px;
    background: var(--color-accent);
    width: 905px;
}

.article-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    min-height: 45vh;
    background: linear-gradient(rgb(154 154 154 / 5%), #d0032224),
        url(/catalog/view/theme/default/image/article-1-bg.jpg) no-repeat
            center/cover;
}

.article-content {
    margin: 0 auto;
    border-radius: 0 0 10px 10px;
    padding: 70px;
    padding-bottom: 40px;
    width: 905px;
    background-color: #fff;
}

.article-content__inner {
    padding-top: 10px;
    padding-bottom: 30px;
}

.article-content__inner p {
    margin: 0 auto 25px;
    max-width: 700px;
}

.article-content__list {
    margin: 0 auto;
    max-width: 665px;
}

.article-content__image {
    margin: 0 -15px 30px;
}

.article-content__image img {
    width: 100%;
    height: auto;
}

.article-content__socials {
    text-align: center;
}

.article-content__socials-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    text-transform: uppercase;
    color: var(--color-accent);
}

.article-content__socials-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.article-content__socials-item {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.article-content__socials-item:hover {
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
}

.article-content__socials-item + .article-content__socials-item {
    margin-left: 13px;
}

.another {
    padding: 50px 0 70px;
}

.another__title {
    margin-top: 0;
    margin-bottom: 50px;
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    text-align: center;
}

.another-news__items {
    margin: 0 auto;
    margin-right: cacl(auto-30px);
    padding-right: 30px;
    max-width: 1800px;
}

.another-news__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 calc(33.33% - 30px);
    flex-basis: calc(33.33% - 30px);
}

.catalog-page {
    /* firefox */
    /* chrome, safari, edge, opera */
}

/*
.catalog-page__title-box {
  position: relative;
  background: linear-gradient( rgb(118 123 142 / 75%), #d0032247 ), url("/catalog/view/theme/default/image/page-bg.jpg") no-repeat center/cover;
}
*/

/*
.catalog-page__title-box::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgb(39 37 37 / 10%);
}
*/

.catalog-page__content-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 30px;
}

.catalog-page__aside,
#column-left {
    width: 30%;
    padding-right: 20px;
}

.catalog-page__aside-item {
    margin-bottom: 10px;
}

.catalog-page__aside-title {
    position: relative;
    display: inline-block;
    margin-top: 14px;
    margin-bottom: 17px;
    padding-right: 17px;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    cursor: pointer;
}

.catalog-page__aside-title::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 12px;
    height: 6.6px;
    background: url('/catalog/view/theme/default/image/icons/chevron-up.svg')
        no-repeat center/cover;
    -webkit-transform: rotate(180deg);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.catalog-page__aside-title.opened::after {
    transform: translate(0px, -50%) rotate(180deg);
}

.catalog-page__categories-btn {
    margin-bottom: 10px;
    border: none;
    padding: 5px 15px;
    background: none;
    color: #ed5190;
    border-radius: 7px;
    background-color: #f8e9ec;
    width: 95%;
}

.catalog-page__categories-btn.active,
.catalog-page__categories-btn:hover {
    color: var(--color-accent);
}

.catalog-page__categories-btn.active {
    font-weight: 500;
    background-color: #ed519017;
    border-left: 3px solid #ed5190;
    border-radius: 5px;
}

.catalog-page__price-range {
    margin-bottom: 30px;
}

.catalog-page__categories-list.opened + .catalog-page__aside-title::after,
.catalog-page__brand-list.opened + .catalog-page__aside-title::after,
.catalog-page__price-range.opened + .catalog-page__aside-title::after,
.catalog-page__height-list.opened + .catalog-page__aside-title::after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.catalog-page__brand-list,
.catalog-page__height-list {
    position: relative;
}

.catalog-page__brand-input,
.catalog-page__height-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
}

.catalog-page__brand-label,
.catalog-page__height-label {
    position: relative;
    display: block;
    margin-bottom: 17px;
    padding-left: 26px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    cursor: pointer;
}

.catalog-page__brand-label::before,
.catalog-page__height-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    display: block;
    border: 0.5px solid #211825;
    border-radius: 2px;
    width: 18px;
    height: 18px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.catalog-page__brand-label.ocf-selected::before,
.catalog-page__height-label.ocf-selected::before {
    border-color: var(--color-accent);
    background-color: var(--color-accent);
}

.catalog-page__brand-label.ocf-selected::after,
.catalog-page__height-label.ocf-selected::after {
    content: '';
    position: absolute;
    left: 1px;
    top: 1px;
    z-index: 2;
    display: block;
    width: 16px;
    height: 16px;
    background: url('/catalog/view/theme/default/image/icons/check.svg')
        no-repeat center;
    opacity: 1;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.catalog-page__price-range input {
    border: 0.5px solid #211825;
    border-radius: 2px;
    padding: 5px 10px;
    min-width: 80px;
    max-width: 80px;
    letter-spacing: 1.5px;
    background: none;
}

.catalog-page__aside-btn {
    position: relative;
    margin-right: 10px;
    margin-bottom: 12px;
    border: 1.5px solid var(--color-accent);
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 500;
    text-align: center;
    background: var(--color-accent);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.catalog-page__aside-btn:hover {
    color: var(--color-accent);
    background: #fff;
}

.catalog-page__aside-btn--submit {
    color: #fff;
}

.catalog-page__price-range input[type='number'] {
    -moz-appearance: textfield;
}

.catalog-page__price-range input::-webkit-outer-spin-button,
.catalog-page__price-range input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.catalog-page__brand-input:checked + .catalog-page__brand-label::before,
.catalog-page__height-input:checked + .catalog-page__height-label::before {
    border-color: var(--color-accent);
    background-color: var(--color-accent);
}

.catalog-page__brand-input:checked + .catalog-page__brand-label::after,
.catalog-page__height-input:checked + .catalog-page__height-label::after {
    opacity: 1;
}

.catalog-page__aside-btn--reset {
    border: 1.5px solid rgba(33, 24, 37, 0.8);
    padding-right: 40px;
    background: none;
}

.catalog-page__aside-btn--reset::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    width: 10px;
    height: 10px;
    background: url('/catalog/view/theme/default/image/icons/cross.svg')
        no-repeat center/cover;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.catalog-page__sort-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 45px;
}

.catalog-page__sort-box__showed-number {
    margin: 0;
    padding: 8px 0 12px;
}

.catalog-page__sort-box .aside-trigger {
    border: 1px solid var(--color-accent);
    border-radius: var(--borad-10);
    padding: 10px 15px;
    background: none;
    width: 100%;
    position: relative;
}

@media (min-width: 768px) {
    .aside-trigger.ocf-btn {
        display: none !important;
    }
}

.catalog-page__sort-box
    .jq-selectbox.dropdown.opened
    .jq-selectbox__select-text::after {
    -webkit-transform: rotate(0deg) translateY(-50%);
    -ms-transform: rotate(0deg) translateY(-50%);
    transform: rotate(0deg) translateY(-50%);
}

.catalog-page__sort-box .jq-selectbox__select {
    position: relative;
    border-radius: 6px;
    padding: 8px 13px 12px;
    -webkit-box-shadow: 0 4px 12px 3px rgba(252, 97, 2, 0.05);
    box-shadow: 0 4px 12px 3px rgba(252, 97, 2, 0.05);
    background: #fff;
}

.catalog-page__sort-box .jq-selectbox__select-text {
    position: relative;
    padding-right: 30px;
    min-width: 185px;
}

.catalog-page__sort-box .jq-selectbox__select-text::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 11;
    width: 12px;
    height: 6.6px;
    background: no-repeat center / cover;
    background-image: url('/catalog/view/theme/default/image/icons/chevron-up.svg');
    -webkit-transform: rotate(180deg) translateY(50%);
    -ms-transform: rotate(180deg) translateY(50%);
    transform: rotate(180deg) translateY(50%);
}

.catalog-page__sort-box .jq-selectbox__dropdown {
    position: absolute;
    top: 0 !important;
    border-radius: 6px;
    width: 100%;
    -webkit-box-shadow: 0 4px 12px 3px rgba(252, 97, 2, 0.05);
    box-shadow: 0 4px 12px 3px rgba(252, 97, 2, 0.05);
    background: #fff;
}

.catalog-page__sort-box .jq-selectbox li {
    padding: 8px 13px 12px;
}

.catalog-page__sort-box .jq-selectbox li:hover {
    color: var(--color-accent);
}

.catalog-page__sort-box .jq-selectbox li.selected {
    color: var(--color-accent);
}

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

.catalog-page__sort-list span {
    padding: 8px 13px 12px;
}

.catalog-page__products {
    padding-bottom: 140px;
    width: 100%;
}

.catalog-page__products b {
    font-size: 100%;
}

.catalog-page__products .pagination {
    margin-bottom: 30px;
}

.product-descr.product-tabs__item-inner span,
.product-descr.product-tabs__item-inner b,
.product-descr.product-tabs__item-inner em,
.product-descr.product-tabs__item-inner strong {
    font-family: 'montserrat', sans-serif !important;
}

@media (max-width: 900px) {
    .catalog-page__products {
        width: 100%;
    }
}

.catalog-page__products-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -30px;
}

.catalog-page .products__item-image {
    background-position: top;
    background-size: contain;
}

body.error-page {
    padding: 0 !important;
}

/*
.error {
  background: no-repeat center / cover;
  background-image: url("/catalog/view/theme/default/image/404-bg.jpg");
}
*/

.error__inner {
    /*
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: auto;
  height: 100vh;
  max-width: 650px;
  text-align: right;
  color: #fff;
*/
}

.error-container {
    margin-top: 100px;
}

.no_found_page .content {
    flex: none;
}

@media (max-width: 780px) {
    .error-container {
        margin-top: 50px;
    }

    .error__title {
        margin-top: 30px;
    }

    .products__item-title a {
        font-size: 12px;
    }
    .title__origi a {
        font-size: 10px;
    }
}

.error__number {
    margin: 0;
    font-weight: 700;
    /*  font-size: 300px;*/
    font-size: 18rem;
    line-height: 300px;
    opacity: 0.3;
}

.error__title {
    /*  margin-top: 0;*/
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 36px;
    line-height: 50px;
}

.error__descr {
    margin-bottom: 35px;
    font-size: 18px;
    line-height: 28px;
    /*  color: #e1e1e1;*/
    color: #5f5f5f;
}

.error__main-link {
    color: var(--color-accent);
}

.error__main-link:hover {
    border-bottom: 1px solid #fff;
}

.error__btn {
    display: inline-block;
}

.faq-content__accord {
    padding: 70px 0 110px;
    width: 100%;
}

.faq-tab {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 6px;
    background-color: #fff;
    -webkit-transition: -webkit-box-shadow 0.3s;
    transition: -webkit-box-shadow 0.3s;
    -o-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s;
    transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}

.faq-tab:hover {
    -webkit-box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.1);
}

.faq-tab-title {
    position: relative;
    margin-top: 0;
    padding: 17px 50px 17px 30px;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    cursor: pointer;
}

.faq-tab-title::after {
    content: '';
    position: absolute;
    right: 30px;
    top: 50%;
    width: 12px;
    height: 6.6px;
    background-image: url('/catalog/view/theme/default/image/icons/chevron-up.svg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transform: rotate(180deg) translateY(50%);
    -ms-transform: rotate(180deg) translateY(50%);
    transform: rotate(180deg) translateY(50%);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.faq-tab-title.opened::after {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.faq-tab-title.opened {
    color: var(--color-accent);
}

.faq-tab-content {
    display: none;
    padding-right: 60px;
    padding-left: 70px;
    line-height: 145%;
    color: rgba(33, 24, 37, 0.6);
}

.faq-tab-content__text {
    margin-top: 0;
}

.about-page__history-inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 75px;
    margin-bottom: 60px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.about-page__history-bg {
    position: absolute;
    left: 0;
    overflow: hidden;
    border-radius: var(--borad-10);
    height: 100%;
}

.about-page__history-bg img {
    display: block;
    width: auto;
    height: 100%;
}

.about-page__history-content {
    position: relative;
    z-index: 1;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 700px;
    flex: 0 1 700px;
    border-radius: var(--borad-10);
    padding: 30px 50px;
    background-color: #fff;
}

.about-page__history-title {
    margin-top: 0;
    font-weight: 700;
    font-size: 36px;
    line-height: 55px;
    color: var(--color-main);
}

.about-page__partners {
    padding-top: 45px;
    padding-bottom: 45px;
}

.about-page__partners-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 48px;
    line-height: 55px;
    text-align: center;
}

.about-page__partners-descr {
    margin-bottom: 50px;
    text-align: center;
}

.partners-slider {
    margin: 0 auto;
    padding: 0 50px;
    max-width: 1800px;
}

.partners-slider .slick-slide + .slick-slide {
    margin-left: 30px;
}

.partners-slider .slick-track {
    margin: 0 15px;
}

.partners-slider .slick-list {
    margin: 0 -15px;
}

.partners-slider__item {
    max-width: 280px;
}

.partners-slider__item img {
    width: 100%;
    height: auto;
}

.about-page__feedback {
    padding: 50px 0 100px;
}

.about-page__feedback-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.about-page__feedback-column {
    padding: 0 15px;
    width: 50%;
}

.about-page .feedback-form,
.about-page .feedback-form__modal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.about-page .feedback-form .form,
.about-page .feedback-form__modal .form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: var(--borad-10);
    padding: 43px 50px;
    width: 100%;
    max-width: 470px;
    -webkit-box-shadow: 0 8px 25px 10px rgba(33, 24, 37, 0.1);
    box-shadow: 0 8px 25px 10px rgba(33, 24, 37, 0.1);
    background: #fff;
}

.about-page .feedback-form__title,
.about-page .feedback-form__modal__title {
    margin-top: 0;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
}

.about-page .feedback-form__descr,
.about-page .feedback-form__modal__descr {
    margin: 0 auto 20px;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}

.about-page .feedback-form__field,
.about-page .feedback-form__modal__field {
    position: relative;
    margin-bottom: 25px;
}

.about-page .feedback-form input,
.about-page .feedback-form__modal input {
    display: block;
    border: none;
    border-bottom: 1px solid rgba(33, 24, 37, 0.6);
    padding: 10px 0;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: none;
}

.about-page .feedback-form input:required:valid:not(:-moz-placeholder-shown),
.about-page
    .feedback-form__modal
    input:required:valid:not(:-moz-placeholder-shown) {
    border-color: #008000;
}

.about-page .feedback-form input:required:valid:not(:-ms-input-placeholder),
.about-page
    .feedback-form__modal
    input:required:valid:not(:-ms-input-placeholder) {
    border-color: #008000;
}

.about-page .feedback-form input:required:valid:not(:placeholder-shown),
.about-page .feedback-form__modal input:required:valid:not(:placeholder-shown) {
    border-color: #008000;
}

.about-page .feedback-form input:required:invalid:not(:-moz-placeholder-shown),
.about-page
    .feedback-form__modal
    input:required:invalid:not(:-moz-placeholder-shown) {
    border-color: #f00;
}

.about-page .feedback-form input:required:invalid:not(:-ms-input-placeholder),
.about-page
    .feedback-form__modal
    input:required:invalid:not(:-ms-input-placeholder) {
    border-color: #f00;
}

.about-page .feedback-form input:required:invalid:not(:placeholder-shown),
.about-page
    .feedback-form__modal
    input:required:invalid:not(:placeholder-shown) {
    border-color: #f00;
}

.about-page
    .feedback-form
    input:invalid:not(:-moz-placeholder-shown)
    + .feedback-form__error,
.about-page
    .feedback-form__modal
    input:invalid:not(:-moz-placeholder-shown)
    + .feedback-form__error {
    position: absolute;
    bottom: -15px;
    display: block;
}

.about-page
    .feedback-form
    input:invalid:not(:-ms-input-placeholder)
    + .feedback-form__error,
.about-page
    .feedback-form__modal
    input:invalid:not(:-ms-input-placeholder)
    + .feedback-form__error {
    position: absolute;
    bottom: -15px;
    display: block;
}

.about-page
    .feedback-form
    input:invalid:not(:placeholder-shown)
    + .feedback-form__error,
.about-page
    .feedback-form__modal
    input:invalid:not(:placeholder-shown)
    + .feedback-form__error {
    position: absolute;
    bottom: -15px;
    display: block;
}

.about-page .feedback-form__error,
.about-page .feedback-form__modal__error {
    display: none;
    margin-top: 3px;
    font-size: 10px;
    line-height: 12px;
    color: rgba(255, 0, 0, 0.6);
}

.about-page .feedback-form__btn,
.about-page .feedback-form__modal__btn {
    display: block;
    margin: 25px auto 0;
    background-color: #fff;
}

.about-page .feedback-form__btn:hover,
.about-page .feedback-form__modal__btn:hover {
    background-color: var(--color-accent);
}

.about-page .feedback-form__text,
.about-page .feedback-form__modal__text {
    margin: auto;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
}

.about-page .feedback-form__modal {
    display: none;
}

.about-page__feedback-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.about-page__feedback-title {
    margin-top: 0;
    margin-bottom: 45px;
    font-weight: 500;
    font-size: 48px;
    line-height: 55px;
}

.about-page__feedback-phone {
    margin-bottom: 45px;
    font-weight: 500;
    font-size: 48px;
    line-height: 55px;
    color: #000;
}

.about-page__feedback-phone:hover {
    color: var(--color-accent);
}

.about-page__feedback-text span {
    color: #f00;
}

.pay-page__inner {
    margin: 0 auto;
    padding: 0 23px;
    max-width: 970px;
    background-color: #fff;
}

.schedule {
    padding: 50px 0;
}

.schedule__title {
    margin-top: 0;
    margin-bottom: 12px;
}

.schedule__text p {
    margin: 0;
    line-height: 24px;
}

.schedule-phone-link {
    border-bottom: 1px solid transparent;
}

.schedule-phone-link:hover {
    border-bottom: 1px solid var(--color-accent);
}

.order-phone-link {
    border-bottom: 1px solid transparent;
    color: #fff;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.order-phone-link:hover {
    border-bottom: 1px solid #fff;
    color: #fff;
}

.order {
    padding-top: 30px;
    padding-bottom: 50px;
}

.order__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-right: -153px;
    margin-left: -153px;
    padding-top: 40px;
}

.order__item {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 370px;
    flex: 0 1 370px;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: var(--borad-10);
    padding: 20px 30px 30px;
    color: #fff;
    background: var(--gradient-accent) no-repeat center/cover;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.order__item::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: no-repeat center / contain;
}

.order__item:hover {
    -webkit-box-shadow: 0 0 20px 3px var(--color-accent);
    box-shadow: 0 0 20px 3px var(--color-accent);
    background: var(--gradient-accent-revers) no-repeat center/cover;
}

.order__item--online::before {
    right: 0;
    bottom: 0;
    background-image: url('/catalog/view/theme/default/image/icons/adv-cart.svg');
}

.order__item--phone::before {
    right: -15px;
    bottom: -15px;
    width: 120px;
    height: 120px;
    background-image: url('/catalog/view/theme/default/image/icons/adv-phone.svg');
}

.order__item--social::before {
    right: 0;
    bottom: 0;
    width: 110px;
    height: 110px;
    background-image: url('/catalog/view/theme/default/image/icons/adv-telegramm.svg');
}

.order__item-title {
    margin-top: 0;
    min-height: 100px;
    font-weight: 600;
    font-size: 28px;
    line-height: 33px;
}

.order__item-descr {
    margin: 12px 0;
    font-weight: 600;
    line-height: 20px;
}

.order__item--online .order__item-descr:not(:first-of-type) {
    padding-right: 80px;
}

.order__item--phone .order__item-descr {
    padding-right: 80px;
}

.process__methods {
    margin: 0 -15px 100px;
    padding-top: 40px;
}

.process__methods-title {
    margin-top: 0;
    margin-bottom: 40px;
    font-weight: 500;
    font-size: 34px;
    line-height: 41px;
    text-align: center;
}

.process__methods-inner {
    padding-bottom: 40px;
}

.process__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    margin-right: 15px;
    margin-bottom: 10px;
    margin-left: 15px;
    max-width: 430px;
    max-height: 345px;
}

.process__image img {
    display: block;
    width: 100%;
    height: auto;
}

.process__descr--right {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.process__descr--left {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.process__descr {
    display: block;
}

.process__descr-content {
    padding: 0 15px;
}

.process__descr-text {
    margin-top: 0;
}

.process__payment {
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
}

.process__descr-list {
    margin-bottom: 20px;
    padding-left: 20px;
}

.process__descr-list li {
    position: relative;
    padding-left: 16px;
}

.process__descr-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
}

.process__descr-list--title {
    display: block;
    font-weight: 500;
}

.process .warning {
    color: var(--color-accent);
}

.product-page__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 45px;
    padding-top: 60px;
    align-items: flex-start;
}

@media (max-width: 780px) {
    .product-page__top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 45px;
        padding-top: 25px;
        align-items: flex-start;
    }
}

.product-page__top-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--borad-10);
    width: 100%;
    max-width: 435px;
    background-color: #fff;
}

.product-page__top-image::after {
    content: '';
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 100px;
    height: 25px;
    background: url('../img/icons/logo.svg') no-repeat center/cover;
}

.product-page__top-image img {
    display: block;
    width: 100%;
    height: 100%;
}

.product-page__top-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 30px 5px 35px;
    max-width: 480px;
    width: 100%;
}

.product-page__top-content p,
.product-page__top-content span {
    font-family: 'montserrat', sans-serif !important;
}

.product-page__top-title {
    margin-top: 0;
    margin-bottom: 13px;
    border-bottom: 1px solid var(--color-accent);
    padding-bottom: 12px;
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
}

.product-page__top-stock {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
}

.product-page__top-stock--on {
    color: var(--color-accent);
}

.product-page__top-stock--off {
    color: rgba(33, 24, 37, 0.3);
}

.product-page__top-text {
    /* margin: auto;
  padding-bottom: 15px; */
}

.product-page__top-purchase {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-top: 1px solid var(--color-accent);
    padding-top: 30px;
}

.product-page__top-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 260px;
    justify-content: space-between;
}

.product-page__top-form .jq-number {
    position: relative;
    vertical-align: middle;
    padding: 0;
    display: none;
}

.product-page__top-form .jq-number__field {
    display: inline-block;
    margin-right: 10px;
    border: 2px solid var(--color-accent);
    border-radius: 6px;
    max-width: 70px;
}

.product-page__top-form .jq-number__field input {
    outline: none;
    border: none;
    padding: 8px 0 8px 8px;
    padding-left: 33px;
    width: 67px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    background: none;
}

.product-page__top-form .jq-number__spin {
    position: absolute;
    left: 8px;
    top: 2px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.product-page__top-form .jq-number__spin::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 6px;
    background: url('/catalog/view/theme/default/image/icons/chevron-up-orange.svg')
        no-repeat center/cover;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.product-page__top-form .jq-number__spin.minus {
    top: auto;
    bottom: 2px;
}

.product-page__top-form .jq-number__spin.minus::after {
    top: 50%;
    -webkit-transform: rotate(180deg) translate(50%, 50%);
    -ms-transform: rotate(180deg) translate(50%, 50%);
    transform: rotate(180deg) translate(50%, 50%);
}

.product-page__top-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 10px;
}

.product-page__top-btn svg {
    margin-right: 10px;
}

.product-page__top-btn svg path {
    fill: var(--color-accent);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.product-page__top-btn:hover svg path {
    fill: #fff;
}

.product-page__top-aside {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 270px;
    flex: 1 0 270px;
    -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: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: var(--borad-10);
    padding: 20px 12px;
    background-color: #fff;
}

.product-page__top-aside p {
    margin: 0;
    font-size: 12px;
    line-height: 17px;
}

.product-page__aside-item {
    position: relative;
    padding-left: 72px;
    width: 100%;
    margin-bottom: 30px;
}

.product-page__aside-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 50px;
    height: 50px;
    background: no-repeat center / cover;
}

.product-page__aside-item--pickup::after {
    height: 55px;
    width: 55px;
    background-image: url('/catalog/view/theme/default/image/icons/ytp1.svg');
}

.product-page__aside-item--local::after {
    height: 55px;
    width: 55px;
    background-image: url('/catalog/view/theme/default/image/icons/ytp2.svg');
}

.product-page__aside-item--country::after {
    height: 55px;
    width: 55px;
    background-image: url('/catalog/view/theme/default/image/icons/ytp3.svg');
}

.product-page__aside-item--volume::after {
    height: 55px;
    width: 55px;
    background-image: url('/catalog/view/theme/default/image/icons/ytp4.svg');
}

.product-page__aside-title {
    margin-top: 0;
    margin-bottom: 4px;
    font-weight: 500;
    line-height: 20px;
}

.product-page__complect {
    padding: 50px 60px;
    background-color: #fff;
    display: none;
}

.product-page__complect-title {
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.5;
}

.product-page__complect-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-right: 30px;
}

.product-page__complect-image {
    margin-right: 15px;
    max-width: 270px;
}

.product-page__complect-image img {
    width: 100%;
    height: auto;
}

.product-page__complect-list svg {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 25px;
    width: 50px;
    height: 50px;
}

.product-page__complect-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
    padding-right: 30px;
    max-width: 250px;
    font-size: 14px;
}

.product-page__complect-extra .product-page__complect-item::after {
    content: '+';
    position: absolute;
    right: 10px;
    top: 50%;
    font-size: 22px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.product-page__complect-extra .product-page__complect-item svg path {
    fill: var(--color-not-available);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.product-page__complect-extra .product-page__complect-item:hover svg path,
.product-page__complect-extra .product-page__complect-item.selected svg path {
    fill: var(--color-accent);
}

.product-page__complect-name {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 20px;
    color: var(--color-accent);
}

.product-page__complect-name svg {
    width: 17px;
    height: 17px;
}

.product-page__complect-name svg:hover path {
    fill: var(--color-accent);
}

.product-page__complect-name .complect-info {
    margin-left: 5px;
    cursor: pointer;
}

.product-page__complect-name .complect-info-modal {
    position: absolute;
    left: 0;
    top: 17px;
    z-index: 5;
    display: none;
    border: 1px solid var(--color-accent);
    border-radius: var(--borad-10);
    padding: 10px;
    max-width: 240px;
    font-weight: 300;
    font-size: 14px;
    color: #211825;
    background-color: #fff;
}

.product-page__descr {
    margin-top: 1px;
    margin-bottom: 30px;
}

.product-page .product-tabs {
    padding: 25px 30px;
}

.product-page .product-tab {
    margin-right: 23px;
    border: 1.5px solid var(--color-accent);
    border-radius: 50px;
    padding: 10px 25px;
    line-height: 20px;
    color: var(--color-accent);
    background: #fff;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
}

.product-page .product-tab.active,
.product-page .product-tab:hover {
    color: #fff;
    background: var(--color-accent);
}

.product-page .product-tabs__content {
    border: 1px solid rgba(33, 24, 37, 0.11);
    border-radius: var(--borad-10);
    -webkit-box-shadow: 0 8px 25px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 25px 10px rgba(0, 0, 0, 0.1);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #fff;
}

.product-page .product-tabs__item {
    display: none;
}

.product-page .product-tabs__item.active-tab-item {
    display: block;
}

.product-page .product-descr {
    padding: 25px 30px;
}

.product-page .product-descr__subtitle {
    margin-bottom: 5px;
    font-weight: 700;
}

.product-page .product-descr p {
    margin: 0;
    margin-bottom: 20px;
    text-align: justify;
}

.product-page .product-tabs__table {
    border-collapse: collapse;
    padding-top: 20px;
    width: 100%;
}

.product-page .product-tabs__table tbody {
    display: block;
    padding: 20px 0 50px;
    width: 100%;
}

.product-page .product-tabs__table .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.product-page .product-tabs__table .row:hover {
    background: rgba(252, 97, 2, 0.1);
}

.product-page .product-tabs__table .column {
    border-bottom: 1px solid var(--color-accent);
    padding: 10px 20px;
    line-height: 25px;
}

.product-page .product-tabs__table .column1 {
    margin-left: 30px;
    width: 37%;
}

.product-page .product-tabs__table .column2 {
    margin-right: 30px;
    width: 63%;
}

.product-page__viewed {
    padding: 40px 15px 90px 15px;
}

.product-page .product-viewed__title {
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 30px;
}

.product-page .product-viewed__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;

    margin-left: -30px;
}

.clothes-page__sizes-list {
    position: relative;
    margin-bottom: 10px;
}

.clothes-page__sizes-item {
    position: relative;
    display: inline-block;
    margin: 0;
    width: 40px;
}

.clothes-page__sizes-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
}

.clothes-page__sizes-label {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: auto;
    padding-left: 5px;
    padding-right: 5px;
    height: 40px;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #000;
    cursor: pointer;
}

.clothes-page__sizes-label span {
    position: relative;
    z-index: 2;
}

.clothes-page__sizes-label::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: block;
    border: 2px solid transparent;
    border-radius: 3px;
    background-color: #fff;
    -webkit-transition: background 0.1s linear, border 0.1s linear;
    -o-transition: background 0.1s linear, border 0.1s linear;
    transition: background 0.1s linear, border 0.1s linear;
}

.clothes-page__sizes-input:checked + .clothes-page__sizes-label::before {
    border-color: var(--color-accent);
}

.policy-page__content {
    padding: 50px 100px 100px;
    background-color: #fff;
}

.policy-page__content p {
    margin: 5px 0;
}

.policy-page__content a {
    color: #fe8b01;
}

.policy-page__content a:hover {
    color: var(--color-accent);
}

.dis__cont {
    padding-top: 15px;
    text-align: right;
}

@media (max-width: 1200px) {
    .categories-menu__title {
        font-size: 12px !important;
    }

    .categories-menu__item svg {
        display: none;
    }

    .categories-menu__item.no-icon .categories-menu__link {
        padding: 10px 5px;
    }

    .categories-menu__title {
        font-size: 14px;
    }

    .categories-menu__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 150px;
        flex: 0 1 150px;
        padding: 10px 5px;
    }

    .categories-menu__link {
        padding: 10px;
    }

    .page-nav__dropdown {
        -webkit-column-gap: 0px;
        -moz-column-gap: 0px;
        column-gap: 0px;
    }

    .page-nav__drop-item:hover .page-nav__dropdown-link a {
        font-size: 12px;
    }

    .products__item-title {
        font-size: 16px;
    }

    .follow__inner {
        margin-left: 60px;
    }

    .footer__home {
        min-width: 260px;
    }

    .footer__category {
        margin-right: 25px;
    }

    .footer__contacts {
        margin-right: 0;
    }

    .footer__column {
        margin-right: 10px;
    }

    .about-page__feedback-phone {
        font-size: 38px;
    }

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

    .product-page__top-image {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
        flex: 0 1 50%;
    }

    .product-page__top-content {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
        flex: 0 1 50%;
    }

    .product-page__top-aside {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin-top: 40px;
    }

    .product-page__descr {
        margin-top: 30px;
    }

    .product-page__viewed {
        padding: 30px 0 60px;
    }

    .product-page__complect-item {
        padding-right: 40px;
    }

    .product-page__complect-item::after {
        right: 20px;
    }

    .price-current {
        font-size: 20px;
    }

    .order__inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        margin-right: 0;
        margin-left: 0;
    }

    .order__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 48%;
        flex: 0 1 48%;
    }

    .order__item-descr {
        padding-right: 90px;
    }
}

@media (max-width: 1024px) {
    .products .products__item,
    .product-viewed__items .products__item,
    #product-search .products__item {
        -ms-flex-preferred-size: calc(33.3% - 30px);
        flex-basis: calc(33.3% - 30px);
    }

    .header__logo img {
        max-width: 175px;
    }

    /* .callback {
    padding-left: 0;
  } */
    .callback::before {
        display: none;
    }

    .callback-phone {
        font-size: 14px;
        line-height: 22px;
    }

    .callback-link {
        font-size: 14px;
    }

    .categories-menu__item {
        max-width: 130px;
    }

    .categories-menu__item svg {
        height: 70px;
    }

    .categories-menu__list.sticky svg {
        margin-bottom: 0;
        width: 33px;
        height: 36px;
    }

    .advantages {
        padding-bottom: 0;
    }

    .advantages__inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .advantages__item {
        -ms-flex-preferred-size: 49%;
        flex-basis: 49%;
        margin-bottom: 30px;
    }

    .products {
        padding: 30px 0 60px;
    }

    .products__item .marker {
        font-size: 9px;
    }

    .products__item-image {
        height: 300px;
    }

    .footer {
        padding-bottom: 70px;
    }

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

    .footer__column {
        margin-bottom: 30px;
    }

    .footer__home {
        width: 100%;
    }

    .footer__info,
    .footer__category,
    .footer__contacts {
        max-width: 33%;
    }

    .partners-slider {
        padding: 0 20px;
    }

    .article-page__title-box {
        max-width: 740px;
        max-height: 220px;
    }

    .article-content {
        max-width: 740px;
    }

    .catalog-page__aside,
    ,
    #column-left {
        margin-right: 20px;
        min-width: 230px;
    }

    .catalog-page__price-range input {
        padding: 5px;
        min-width: 65px;
        max-width: 65px;
    }

    .catalog-page__brand-list,
    .catalog-page__height-list {
        font-size: 14px;
    }

    .product-page__top-aside {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .product-page__aside-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
        flex: 0 1 50%;
        margin-bottom: 20px;
    }

    .product-page__complect {
        padding: 30px 0;
    }

    .product-page__complect-inner {
        padding-right: 0;
    }

    .product-page__complect-item svg {
        margin-right: 10px;
        width: 40px;
        height: 40px;
    }

    .product-page__complect-extra .product-page__complect-item::after {
        right: 20px;
    }

    .pay-page__inner {
        padding: 0;
    }

    .process__methods {
        margin: 0 -15px;
    }

    .faq-content__accord {
        padding: 60px 0;
    }

    .policy-page__content {
        padding-right: 50px;
        padding-left: 50px;
    }
}

@media (max-width: 900px) {
    .container {
        padding: 0 20px;
    }

    /* .page-nav__categories-menu .categories-menu__item {
    max-width: 110px;
  }
  .page-nav__categories-menu .categories-menu__item .categories-menu__link {
    padding: 10px;
  }
  .page-nav__categories-menu .categories-menu__item svg {
    display: none;
  }
  .callback-link {
    display: none;
  } */
    .logo {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 120px;
        flex: 0 0 120px;
        margin-right: auto;
        margin-left: auto;
        width: 120px;
        height: 30px;
    }

    .header__inner {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        padding: 13px 0 12px;
        min-height: 60px;
    }

    .header-search-trigger {
        display: block;
        margin: 0 9px;
        border: none;
        padding: 0;
        width: 30px;
        height: 30px;
        background: none;
    }

    .search-form {
        position: absolute;
        left: 62px;
        right: 62px;
        top: 87px;
        z-index: 550;
        display: none;
        overflow: hidden;
        border: 1px solid var(--color-accent);
        border-radius: 6px;
        -webkit-box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.3);
        box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.3);
    }

    .search-form__input {
        border: none;
        width: 100%;
    }

    .callback {
        padding-left: 0;
    }

    .callback-link {
        margin: 0 5px;
        padding: 4px;
    }

    .account-link {
        margin: 0 9px;
        padding: 0;
    }

    .account-link::after {
        display: none;
    }

    .account-link__text {
        display: none;
    }

    .cart-link {
        margin: 0 9px;
        padding: 0;
    }

    .cart-link__text {
        display: none;
    }

    body,
    .home {
        padding-top: 60px !important;
    }

    .categories-menu__list.sticky,
    .page-nav,
    .all-nav {
        display: none !important;
    }

    .burger-menu-btn {
        position: relative;
        display: block;
        margin-left: 10px;
        border: none;
        padding: 0;
        width: 24px;
        height: 24px;
        background: none;
        /* HAMBURGER 1 */
    }

    .burger-menu-btn .visually-hidden {
        position: absolute;
        overflow: hidden;
        margin: -1px;
        border: 0;
        padding: 0;
        width: 1px;
        height: 1px;
        clip: rect(0 0 0 0);
    }

    .burger-menu-btn .hamburger {
        position: relative;
        margin: 0 auto;
        width: 24px;
        height: 24px;
        cursor: pointer;
        margin-top: 5px;
    }

    .burger-menu-btn .hamburger .bar {
        position: absolute;
        display: block;
        border-radius: 4px;
        padding: 0;
        width: 24px;
        height: 4px;
        background-color: var(--color-main);
        -webkit-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }

    .burger-menu-btn .bar1 {
        top: 0;
    }

    .burger-menu-btn .bar2,
    .burger-menu-btn .bar3 {
        top: 10px;
    }

    .burger-menu-btn .bar3 {
        right: 0;
    }

    .burger-menu-btn .bar4 {
        bottom: 0;
    }

    .burger-menu-btn .checkbox1:checked + label > .hamburger1 > .bar1 {
        width: 32px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transform-origin: 5%;
        -ms-transform-origin: 5%;
        transform-origin: 5%;
    }

    .burger-menu-btn .checkbox1:checked + label > .hamburger1 > .bar2 {
        background-color: transparent;
        -webkit-transform: translateX(-40px);
        -ms-transform: translateX(-40px);
        transform: translateX(-40px);
    }

    .burger-menu-btn .checkbox1:checked + label > .hamburger1 > .bar3 {
        background-color: transparent;
        -webkit-transform: translateX(40px);
        -ms-transform: translateX(40px);
        transform: translateX(40px);
    }

    .burger-menu-btn .checkbox1:checked + label > .hamburger1 > .bar4 {
        width: 32px;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transform-origin: 5%;
        -ms-transform-origin: 5%;
        transform-origin: 5%;
    }

    .navbar-mobile {
        position: absolute;
        left: 0;
        right: 0;
        top: 70px;
        z-index: 500;
        overflow-y: auto;
        height: calc(100vh - 60px);
        text-align: right;
        background: var(--gradient-accent);
    }

    .navbar-mobile__inner {
        overflow-y: auto;
        padding: 0px 0 50px;
    }

    .navbar-mobile__nav a {
        display: block;
        overflow: auto;
        padding: 0 20px;
        font-weight: 600;
        font-size: 24px;
        line-height: 60px;
        letter-spacing: 1.5px;
        text-align: left;
        text-transform: uppercase;
        color: #fff;
    }

    .navbar-mobile__nav a:hover {
        color: #fff;
    }

    .navbar-mobile__nav > li {
        border-bottom: 1px solid #fff;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }

    .navbar-mobile__nav > li:last-child {
        border: none;
    }

    .navbar-mobile__drop-item {
        position: relative;
        padding-right: 30px;
    }

    .navbar-mobile__drop-item::before {
        content: '';
        position: absolute;
        right: 15px;
        top: 23px;
        width: 16px;
        height: 11px;
        background: url('../img/icons/shevron-down-white.svg') no-repeat
            center/cover;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }

    .navbar-mobile__drop-item.opened::before {
        -webkit-transform: rotateX(180deg);
        transform: rotateX(180deg);
    }

    .navbar-mobile__dropdown {
        display: none;
        overflow-y: auto;
        padding-right: 20px;
        max-height: 365px;
    }

    .navbar-mobile__dropdown-link a {
        font-size: 14px;
    }

    .navbar-mobile__phone {
        margin: 20px 0;
        padding: 20px;
        font-weight: 600;
        font-size: 18px;
        line-height: 22px;
        text-align: center;
        text-transform: uppercase;
        color: #fff;
    }

    .navbar-mobile__phone:hover {
        border-radius: 6px 0 0 6px;
        color: #f83701;
        background-color: #fff;
    }

    .navbar-mobile__socials {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin: 0 20px;
    }

    .navbar-mobile__social-link {
        margin-left: 20px;
    }

    .navbar-mobile__social-link img {
        width: 22px;
        height: 22px;
    }

    .navbar-mobile__social-link--telegram img {
        width: 26px;
        height: 23px;
    }

    .callback svg {
        -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
        transform: scale(0.7);
        margin-top: 12px;
        margin-left: 6px;
    }

    .callback-link {
        display: none;
    }

    .callback-mobile {
        display: block !important;
        width: 35px;
        height: 35px;
    }

    .callback-mobile img {
        /* padding-top: 13px; */
        width: 100%;
        height: auto;
    }

    .categories-menu__item {
        max-width: 110px;
    }

    .categories-menu__list.sticky {
        padding-right: 40px;
    }

    .advantages__item {
        -ms-flex-preferred-size: 69%;
        flex-basis: 69%;
    }

    .advantages__item + .advantages__item {
        margin-left: 0;
    }

    .products {
        padding: 30px 0 90px;
    }

    .products .filters-btn {
        margin-bottom: 30px;
    }

    .products__items {
        margin-bottom: 15px;
    }

    .products__item-bottom .cart {
        width: 40px;
        height: 40px;
    }

    .products__item-bottom .cart a {
        width: 38px;
        height: 38px;
    }

    .products__item-bottom .cart svg {
        width: 20px;
        height: 18px;
    }

    .price-current {
        font-weight: 500;
    }

    .price-old {
        font-weight: 500;
        font-size: 12px;
        line-height: 15px;
    }

    .follow__inner {
        margin-left: 0;
        height: 360px;
    }

    .follow__title {
        margin-bottom: 20px;
    }

    .follow__descr {
        margin-bottom: 20px;
    }

    .news {
        padding: 45px 0 30px;
    }

    .news__title {
        margin-bottom: 25px;
    }

    .news__items {
        margin-bottom: 15px;
    }

    .about {
        padding: 10px 0 40px;
    }

    .about__title {
        margin-bottom: 0;
    }

    .about__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 0;
    }

    .about__text {
        width: 100%;
    }

    .footer {
        padding: 45px 0 70px;
    }

    .footer__info,
    .footer__category,
    .footer__contacts {
        width: 47%;
        max-width: 47%;
    }

    .about-page__history-bg {
        margin-left: -40px;
    }

    .about-page__history-content {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 60%;
        flex: 0 1 60%;
        padding: 20px;
    }

    .about-page__partners {
        padding: 30px 0;
    }

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

    .about-page__feedback-title {
        margin-bottom: 30px;
    }

    .about-page__feedback-phone {
        margin-bottom: 30px;
        font-size: 26px;
    }

    .about-page .feedback-form .form,
    .about-page .feedback-form__modal form {
        padding: 25px;
    }

    .article-content__image {
        margin: 0 -20px 30px;
    }

    .another {
        padding: 30px 0 50px;
    }

    .catalog-page__content-inner {
        position: relative;
    }

    .catalog-page__aside {
        position: absolute;
        left: 0;
        top: 110px;
        z-index: 5;
        display: none;
        border-radius: var(--borad-10);
        padding: 15px;
        background-color: #ffffff;
    }

    .catalog-page__aside--open {
        display: block;
    }

    .catalog-page__showed-number {
        display: none;
    }

    .catalog-page .aside-trigger {
        display: block;
        outline: none;
    }

    .catalog-page__price-range input {
        background-color: #fff;
    }

    .catalog-page__brand-label::before,
    .catalog-page__height-label::before {
        background-color: #fff;
    }

    .product-page__top-image {
        -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
    }

    .product-page__top-content {
        -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
    }

    .product-page__complect-name {
        font-size: 13px;
    }

    .product-page__complect-item {
        font-size: 11px;
    }

    .product-page__viewed {
        padding-bottom: 30px;
    }

    .product-page .product-tabs__table .column1 {
        width: 41%;
    }

    .product-page .product-tabs__table .column2 {
        width: 50%;
    }

    .order__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
        flex: 0 1 100%;
    }

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

    .policy-page__content {
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media (max-width: 720px) {
    .products .products__item,
    .product-viewed__items .products__item,
    #product-search .products__item {
        -ms-flex-preferred-size: calc(33.3% - 20px);
        flex-basis: calc(33.3% - 20px);
    }

    .breadcrumbs__list li + li {
        position: relative;
        padding-left: 10px;
    }

    .breadcrumbs__list li + li::before {
        left: 2px;
    }

    .back-to-top {
        bottom: 20px;
    }

    .article-content {
        margin: 0 auto;
        border-radius: 0 0 10px 10px;
        padding: 17px;
        padding-bottom: 40px;
        max-width: 100%;
        background-color: #fff;
    }

    .lock-scroll {
        overflow: hidden;
    }

    /* убрал Олег*/
    /* .logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 120px;
    flex: 0 0 120px;
    margin-right: auto;
    width: 120px;
    height: 30px;
  }
  .header__inner {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 13px 0 12px;
    min-height: 60px;
  }
  .header-search-trigger {
    display: block;
    margin: 0 9px;
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    background: none;
  }
  .search-form {
    position: absolute;
    left: 50px;
    right: 50px;
    top: 80px;
    z-index: 550;
    display: none;
    overflow: hidden;
    border: 1px solid var(--color-accent);
    border-radius: 6px;
    -webkit-box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.3);
  }
  .search-form__input {
    border: none;
    width: 100%;
  }
  .callback-link {
    margin: 0 5px;
    padding: 4px;
  }
  .account-link {
    margin: 0 9px;
    padding: 0;
  }
  .account-link::after {
    display: none;
  }
  .account-link__text {
    display: none;
  }
  .cart-link {
    margin: 0 9px;
    padding: 0;
  }
  .cart-link__text {
    display: none;
  }
  .burger-menu-btn {
    position: relative;
    display: block;
    margin-left: 10px;
    border: none;
    padding: 0;
    width: 24px;
    height: 24px;
    background: none;
  }
  .burger-menu-btn .visually-hidden {
    position: absolute;
    overflow: hidden;
    margin: -1px;
    border: 0;
    padding: 0;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
  }
  .burger-menu-btn .hamburger {
    position: relative;
    margin: 0 auto;
    width: 24px;
    height: 24px;
    cursor: pointer;
  }
  .burger-menu-btn .hamburger .bar {
    position: absolute;
    display: block;
    border-radius: 4px;
    padding: 0;
    width: 24px;
    height: 4px;
    background-color: var(--color-main);
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .burger-menu-btn .bar1 {
    top: 0;
  }
  .burger-menu-btn .bar2,
  .burger-menu-btn .bar3 {
    top: 10px;
  }
  .burger-menu-btn .bar3 {
    right: 0;
  }
  .burger-menu-btn .bar4 {
    bottom: 0;
  }
  .burger-menu-btn .checkbox1:checked + label > .hamburger1 > .bar1 {
    width: 32px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 5%;
    -ms-transform-origin: 5%;
    transform-origin: 5%;
  }
  .burger-menu-btn .checkbox1:checked + label > .hamburger1 > .bar2 {
    background-color: transparent;
    -webkit-transform: translateX(-40px);
    -ms-transform: translateX(-40px);
    transform: translateX(-40px);
  }
  .burger-menu-btn .checkbox1:checked + label > .hamburger1 > .bar3 {
    background-color: transparent;
    -webkit-transform: translateX(40px);
    -ms-transform: translateX(40px);
    transform: translateX(40px);
  }
  .burger-menu-btn .checkbox1:checked + label > .hamburger1 > .bar4 {
    width: 32px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 5%;
    -ms-transform-origin: 5%;
    transform-origin: 5%;
  }
  .navbar-mobile {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    z-index: 500;
    overflow-y: auto;
    height: calc(100vh - 60px);
    text-align: right;
    background: var(--gradient-accent);
  }
  .navbar-mobile__inner {
    overflow-y: auto;
    padding: 0px 0 50px 0px;
  }
  .navbar-mobile__nav a {
    display: block;
    overflow: auto;
    font-weight: 600;
    font-size: 24px;
    line-height: 60px;
    letter-spacing: 1.5px;
    text-align: right;
    text-transform: uppercase;
    color: #fff;
  }
  .navbar-mobile__nav li {
    border-bottom: 1px solid #fff;
    padding: 0 20px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  .navbar-mobile__nav li:hover {
    background-color: #fff;
  }
  .navbar-mobile__nav li:hover a {
    color: #f83701;
  }
  .navbar-mobile__nav li:last-child {
    border: none;
  }
  .navbar-mobile__phone {
    margin: 20px 0;
    padding: 20px;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
  }
  .navbar-mobile__phone:hover {
    border-radius: 6px 0 0 6px;
    color: #f83701;
    background-color: #fff;
  }
  .navbar-mobile__socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin: 0 20px;
  }
  .navbar-mobile__social-link {
    margin-left: 20px;
  }
  .navbar-mobile__social-link img {
    width: 22px;
    height: 22px;
  }
  .navbar-mobile__social-link--telegram img {
    width: 26px;
    height: 23px;
  }
  body,
  .home {
    padding-top: 57px !important;
  }
  .page__title {
    font-size: 32px;
  }
  .section-title {
    font-size: 30px;
  }
  .section-title--h3 {
    font-size: 32px;
  }
  .categories-menu__list.sticky,
  .page-nav,
  .all-nav {
    display: none !important;
  }
  .categories-menu {
    display: none;
  }
  .categories__title {
    margin-bottom: 70px;
    font-size: 36px;
    line-height: 40px;
  }
  .categories__btn-box {
    display: block;
  }
  .categories__btn {
    padding: 12px 30px;
    background-color: #fff;
  } */

    /* добавил Олег */
    .page__title {
        font-size: 32px;
    }

    .section-title {
        font-size: 30px;
    }

    .section-title--h3 {
        font-size: 32px;
    }

    .categories-menu {
        display: none;
    }

    .categories__title {
        margin-bottom: 70px;
        font-size: 26px;
        line-height: 40px;
    }

    .categories__btn-box {
        display: block;
    }

    .categories__btn {
        padding: 12px 30px;
        background-color: #fff;
    }

    /* ========= */

    .advantages {
        padding-top: 20px;
    }

    .advantages__item {
        margin-bottom: 17px;
    }

    .products {
        padding-top: 20px;
    }

    .products__filters {
        display: none;
    }

    .products__items {
        margin-right: -10px;
        margin-left: -10px;
    }

    .products__item {
        -ms-flex-preferred-size: calc(50% - 20px);
        flex-basis: calc(50% - 20px);
        margin: 0 auto 20px;
    }

    .products__item-image {
        max-height: 280px;
    }

    .products__item-image::after {
        bottom: 40px;
    }

    .follow {
        background-image: url('/catalog/view/theme/default/image/follow-bg-mobile.jpg');
        background-size: cover;
    }

    .follow__inner {
        margin-left: 0;
        height: 300px;
    }

    .follow__title {
        font-size: 24px;
        line-height: 29px;
    }

    .follow__descr {
        font-size: 14px;
        line-height: 17px;
    }

    .news__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
        flex: 0 1 100%;
    }

    .news__item-title {
        padding: 0 16px;
    }

    .news__item-text {
        padding: 0 16px;
    }

    .about {
        padding-bottom: 20px;
    }

    .about-page__history-inner {
        margin-top: 40px;
        margin-bottom: 0;
    }

    .about-page__history-title {
        font-size: 24px;
        line-height: 32px;
    }

    .about-page__history-text {
        margin: 7px 0;
    }

    .about-page__partners {
        padding: 20px 0;
    }

    .about-page__feedback-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .about-page__feedback-column {
        padding: 0;
        width: 100%;
    }

    .about-page .feedback-form .form,
    .about-page .feedback-form__modal form {
        margin-bottom: 45px;
        max-width: 100%;
    }

    .about-page__feedback-title {
        margin-bottom: 0;
        text-align: left;
    }

    .about-page__feedback-phone {
        margin-bottom: 10px;
    }

    .article-page__title-box {
        padding: 0 10px;
    }

    .catalog-page__products-inner {
        margin-left: 0;
    }

    .catalog-page__products {
        padding-bottom: 90px;
    }

    .product-page__top-image {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        margin-bottom: 20px;
        max-width: none;
    }

    .product-page__top-content {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        align-items: center;
        text-align: center;
    }

    .product-page__aside-item {
        padding-left: 62px;
    }

    .product-page__complect-inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-right: 0;
    }

    .product-page__complect-image {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
        flex: 0 1 100%;
        margin-right: auto;
        max-width: none;
    }

    .product-page__complect-default {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 40%;
        flex: 0 1 40%;
        margin-bottom: 30px;
    }

    .product-page .product-tabs__item-inner {
        padding: 15px 20px;
        font-size: 14px;
    }

    .product-page .product-tabs__item-inner.product-feature {
        padding: 0;
    }

    .product-page .product-tabs__table tbody {
        padding: 10px 0 30px;
    }

    .product-page .complect-info {
        margin-left: 15px;
    }

    .product-page .product-tabs__table .column1 {
        width: 55%;
    }

    .product-page .product-tabs__table .column2 {
        width: 50%;
    }

    .product-page .product-viewed__items {
        margin-left: 0px;
        margin-right: 0px;
    }

    .order {
        padding-bottom: 30px;
    }

    .schedule {
        padding: 20px 0;
    }

    .faq-tab-content {
        padding: 0 20px;
    }

    .error__number {
        font-size: 230px;
        line-height: 230px;
    }

    .policy-page__content {
        font-size: 12px;
    }
}

@media (max-width: 540px) {
    .catalog-page__aside-item {
        margin-bottom: 0px;
    }

    .catalog-page__aside-title {
        margin-top: 5px;
    }

    .new__st__w {
        width: 16px;
        height: 16px;
    }

    .pay-page__inner {
        padding: 0px 20px;
    }

    .products .products__item,
    .product-viewed__items .products__item,
    #product-search .products__item,
    #myModal .products__item {
        -ms-flex-preferred-size: calc(50% - 20px);
        flex-basis: calc(50% - 20px);
    }

    #myModal .products__item {
        margin-left: 10px;
    }

    #myModal .product-page__viewed {
        padding: 5px;
    }

    /* добавил Олег */
    .logo {
        -ms-flex-preferred-size: 100px;
        flex-basis: 100px;
    }

    .header-search-trigger,
    .callback-link,
    .account-link,
    .cart-link {
        margin-right: 0;
    }

    .header__lang {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 39px;
        flex: 0 0 39px;
        width: 39px;
        height: 39px;
        font-size: 12px;
    }

    .header__lang-content {
        margin-top: 8px;
    }

    .navbar-mobile {
        top: 78px;
    }

    .navbar-mobile__nav a {
        font-size: 16px;
        line-height: 50px;
    }

    .navbar-mobile__dropdown-link a {
        font-size: 14px;
        line-height: 44px;
    }

    .navbar-mobile__drop-item::before {
        top: 18px;
    }

    /* ============ */
    .advantages__item {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }

    .products__item-title {
        font-size: 12px;
        line-height: 15px;
    }
    .title__origi {
    }

    .products__item-image {
        overflow: hidden;
        margin-bottom: 20px;
        height: 100%;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .products__item > a {
        width: 160px;
        height: 160px;
        margin: 0 auto;
    }

    .products__item-image::after {
        bottom: 30px;
        width: 50px;
        height: 13px;
    }

    .products__item-bottom {
        padding: 12px;
    }

    .products__item.not-available .price-current {
        font-size: 10px;
    }

    .categories {
        background-image: url('/catalog/view/theme/default/image/desktop-bg-mobile.jpg');
        background-size: cover;
    }

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

    .page__title {
        font-size: 22px;
        line-height: 28px;
    }

    .breadcrumbs {
        margin-top: 20px;
        font-size: 14px;
    }

    .about-page__history-inner {
        display: block;
        margin: 0;
        padding: 20px 0 0;
    }

    .about-page__history-bg {
        position: relative;
        margin-left: 0;
        max-height: auto;
    }

    .about-page__history-bg img {
        width: 100%;
    }

    .about-page__history-content {
        z-index: 0;
        padding: 20px 15px;
    }

    .news {
        padding: 20px 0 30px;
    }

    .news__item {
        margin-bottom: 20px;
        min-width: 90%;
    }

    .catalog-page__aside--open {
        width: 100%;
    }

    .catalog-page__sort-list span {
        display: none;
    }

    .product-page__top-content {
        padding: 0;
    }

    .product-page__top-title {
        font-size: 22px;
        line-height: 28px;
    }

    .product-page__top-purchase {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
    }

    .product-page__top-form {
        max-width: none;
        justify-content: center;
    }

    .product-page__aside-item {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        margin-bottom: 20px;
    }

    .product-page .product-tabs {
        padding: 25px 0;
    }

    .product-page .product-tab {
        margin-right: 10px;
        padding: 10px 15px;
        font-size: 14px;
    }

    .product-page .product-tabs__table .column {
        padding: 10px;
    }

    .product-page .product-tabs__table .column1 {
        margin-left: 0;
    }

    .product-page .product-tabs__table .column2 {
        margin-right: 0;
    }

    .order {
        padding: 17px 0;
    }

    .order__item {
        margin-bottom: 17px;
    }

    .process__methods {
        margin: 0 -15px 90px;
        padding-top: 17px;
    }

    .process__methods-inner {
        padding-bottom: 20px;
    }

    .error__number {
        font-size: 160px;
        line-height: 160px;
    }

    .error__title {
        font-size: 28px;
        line-height: 32px;
    }

    .policy-page__content {
        padding-right: 10px;
        padding-left: 10px;
    }

    .pagination > li > a,
    .pagination > li > span {
        position: relative;
        float: left;
        padding: 6px 8px;
        font-size: 11px;
    }
}

@media (max-width: 380px) {
    .products__item > a {
        width: 130px;
        height: 130px;
        margin: 0 auto;
    }

    .pagination {
        padding: 0px 20px;
    }

    .navbar-mobile__nav a {
        font-size: 20px;
        line-height: 50px;
    }

    body {
        font-size: 14px;
    }

    .container {
        padding: 0 10px;
        max-width: 100%;
    }

    .logo {
        -ms-flex-preferred-size: 70px;
        flex-basis: 70px;
    }

    /* .header-search-trigger,
  .callback-link,
  .account-link,
  .cart-link {
    margin-right: 0;
    margin-top: -4px;
  } */
    .categories__inner {
        height: 90vh;
    }

    .categories__title {
        margin-bottom: 50px;
        font-size: 26px;
    }

    .desktop-slider__title {
        margin-bottom: 30px;
        font-size: 24px;
        line-height: 34px;
        text-transform: uppercase;
    }

    .desktop-slider__list-item {
        margin-bottom: 20px;
        font-size: 14px;
        line-height: 20px;
    }

    .advantages__item {
        padding: 10px 80px 30px 10px;
        min-height: 180px;
    }

    .advantages__item-title {
        font-size: 24px;
    }

    .advantages__item-descr {
        font-size: 16px;
    }

    .products {
        padding-bottom: 60px;
    }

    .price-current {
        font-size: 12px;
    }

    .price-old {
        font-size: 10px;
    }

    .follow__inner {
        padding-top: 60px;
        height: 280px;
    }

    .follow__title {
        font-size: 22px;
    }

    .about__content {
        font-size: 12px;
    }

    .page__title-box {
        /*    height: 220px;*/
        margin-top: 30px;
    }

    .page__title {
        margin-bottom: 0;
        font-size: 16px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-title--h3 {
        font-size: 24px;
    }

    .breadcrumbs {
        font-size: 12px;
    }

    .breadcrumbs__list li a {
        padding: 10px 0;
    }

    .breadcrumbs__list li:last-child a,
    .breadcrumbs__list li:last-child span {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        overflow: hidden;
        max-width: 210px;
        line-height: 1;
        white-space: nowrap;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
    }

    .pagination__link,
    .pagination span {
        font-size: 14px;
    }

    .about-page__history-text {
        font-size: 14px;
    }

    .catalog-page__sort-box .jq-selectbox__select-text {
        position: relative;
        padding-right: 30px;
        min-width: 165px;
    }

    .product-page__top-title {
        font-size: 20px;
        line-height: 28px;
    }

    .product-page__complect-image {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }

    .product-page__complect-list {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
        flex: 0 1 100%;
    }

    .product-page__top-purchase .price-current {
        font-size: 20px;
    }

    .product-page .product-viewed__title {
        margin-top: 0;
        margin-bottom: 25px;
        font-weight: 600;
        font-size: 26px;
    }

    .order__item {
        padding: 20px;
    }

    .order__item--online::before {
        width: 70px;
        height: 70px;
    }

    .order__item--online .order__item-descr:not(:first-of-type) {
        padding-right: 55px;
    }

    .order__item--phone::before {
        right: -5px;
        bottom: -5px;
        width: 80px;
        height: 80px;
    }

    .order__item--social::before {
        width: 80px;
        height: 70px;
    }

    .order__item-title {
        min-height: 90px;
        font-size: 24px;
        line-height: 30px;
    }

    .order__item-descr {
        padding-right: 40px;
    }

    .order__item--phone .order__item-descr {
        padding-right: 40px;
    }

    .order .order-phone-link {
        margin-top: 10px;
        font-size: 22px;
    }

    .process__methods-title {
        font-size: 24px;
        line-height: 30px;
    }

    .process__payment {
        font-size: 15px;
    }

    .process__descr-list li {
        position: relative;
        margin-bottom: 5px;
        padding-left: 16px;
    }

    .faq-content__accord {
        padding: 20px 0;
    }

    .faq-tab {
        margin-bottom: 20px;
    }

    .faq-tab-title {
        padding: 15px 35px 15px 20px;
        font-size: 16px;
    }

    .faq-tab-title::after {
        right: 20px;
    }

    .error__number {
        font-size: 140px;
    }

    .error__title {
        font-size: 24px;
    }

    .error__descr {
        font-size: 16px;
    }
}

@media (min-width: 901px) {
    .header-search-trigger {
        display: none !important;
    }

    .search-form {
        display: block;
    }

    .burger-menu-btn {
        display: none !important;
    }

    .navbar-mobile {
        display: none !important;
    }

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

    .all-nav {
        display: block;
    }
}

@media (max-width: 900px) {
    .catalog-page .aside-trigger {
        display: block;
        outline: none;
    }
}

@media (max-width: 850px) {
    .swiper-container {
        width: 100%;
        height: 100%;
        margin-top: 84px;
    }
}

@media (max-width: 768px) {
    .catalog-page__sort-box {
        display: grid;
        grid-template-columns: calc(50% - 10px) calc(50% - 10px);
        gap: 10px;
    }

    .catalog-page__sort-box .jq-selectbox {
        width: 100%;
    }

    .catalog-page__sort-box .jq-selectbox__select {
        position: relative;
        border-radius: 6px;
        padding: 8px 5px 8px;

        width: 100%;
    }

    .catalog-page__sort-box .jq-selectbox__select-text {
        position: relative;
        padding-right: 20px;
        min-width: auto;
        font-size: 12px;
        line-height: 22px;
    }

    .footer_visa {
        text-align: left !important;
        margin-top: 20px;
    }
}

#ocfilter label {
    font-size: 16px;
    width: 100%;
}

#ocfilter input[type='checkbox'].ocf-target {
    display: none;
}

.btn.btn-primary {
    background-color: #ed5190;
    border: none;
    background-image: none;
    font-size: 18px;
}

.noUi-connect {
    background: #ed5190;
}

.ocfilter-option .ocf-option-name {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
}

.ocfilter-option {
    margin-bottom: 0px;
}

.ocf-offcanvas-body {
    padding: 10px 15px;
}

.noUi-handle {
    border-radius: 15px;
    height: 20px !important;
    width: 20px !important;
    left: -10px !important;
    top: -5px !important;
    border: 2px solid #ed5190;
}

#max-price-value,
#min-price-value {
    max-width: 100px;
}

#ocfilter .btn.btn-primary {
    border-radius: 25px !important;
    padding-left: 15px;
    padding-right: 15px;
}

#ocfilter #scale-price .noUi-pips {
    display: none;
}

#ocfilter small.badge {
    display: none;
}

#ocfilter .noUi-horizontal {
    height: 12px;
}

#ocfilter .noUi-handle:after,
#ocfilter .noUi-handle:before {
    display: none;
}

@media (max-width: 800px) {
    .product-page .product-tab {
        margin-right: 23px;
        border: 1.5px solid var(--color-accent);
        border-radius: 50px;
        padding: 10px 25px;
        line-height: 20px;
        color: var(--color-accent);
        background: #fff;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        cursor: pointer;
        display: inline-table;
        width: 100%;
        margin-bottom: 7px;
        text-align: center;
    }

    .product-page__descr {
        margin-top: 0px !important;
    }
}

@media (min-width: 960px) {
    .aside-trigger {
        display: none;
    }

    #aside-trigger {
        display: none;
    }
}

.swiper-button-next::before,
.swiper-button-prev::before {
    content: none;
}

.footer_visa {
    text-align: right;
}

.footer_visa img {
    max-width: 100px;
    display: inline-block;
}

.men2list li ul li a {
    padding: 0px !important;
    padding-left: 15px !important;
}

.men2list li a span {
    float: right;
    padding-left: 15px;
    padding-right: 15px;
}

.men2listmob li ul li a {
    padding: 0px !important;
    padding-left: 30px !important;
    padding-right: 20px !important;
    line-height: 40px !important;
}

.men3listmob li ul li a {
    padding: 0px !important;
    padding-left: 40px !important;
    padding-right: 20px !important;
    line-height: 30px !important;
}

.men2list li a span {
    cursor: pointer;
    display: -webkit-flex;
    display: flex;
    padding-right: 10px;
    vertical-align: middle;
    height: 16px;
    width: 16px;
    /*    margin-left: 0;*/
    position: relative;
    margin-top: 1px;
}

.men2list li a span::before {
    content: '';
    width: 1px;
    height: 16px;
    left: 7.5px;
    top: 0;
    background: #fff;
    position: absolute;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.men2list li a span::after {
    content: '';
    width: 16px;
    height: 1px;
    left: 0;
    top: 7.5px;
    background: #fff;
    position: absolute;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.navbar-mobile__inner .men2list li a span {
    margin-top: 17px;
}

.navbar-mobile__inner .men3listmob li a span {
    margin-top: 12px;
}

.men2list li a span.m3act::before {
    height: 0px;
    top: 6px;
}

.men2list li a span.m3act::before,
.men2list li a span.m3act::after {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

.page-nav__drop-item:hover .page-nav__dropdown-link a span {
    transition: color 0.3s, background-color 0.3s;
}

.page-nav__drop-item:hover .page-nav__dropdown-link a:hover span::before,
.page-nav__drop-item:hover .page-nav__dropdown-link a:hover span::after {
    background: #ff7383;
}

.catalog-page__aside .men2list li a span::before,
.catalog-page__aside .men2list li a span::after {
    background: #000;
}

.catalog-page__aside .men2list li a span {
    margin-top: 5px;
}

.catalog-page__aside .men2list li a span::before {
    background: #000;
    width: 1px;
    height: 12px;
    left: 5.5px;
    top: 0;
}

.catalog-page__aside .men2list li a span::after {
    background: #000;
    width: 12px;
    height: 1px;
    left: 0;
    top: 5.5px;
}

.catalog-page__aside .men2list li a span.m3act::before {
    height: 0px;
    top: 6px;
}

.icon_plus {
    margin-left: 20px;
}

.sub_sub_category {
    line-height: 2;
}

.sub_sub_category li a {
    font-size: 14px !important;
}

.men2list.men3listmob li > a {
    font-size: 17px;
}

.men2list.men2listmob > li > ul > li > ul li > a {
    font-size: 15px;
}

.variat_module {
    margin-bottom: 20px;
}

.testimonials-pagination {
    padding: 60px 0;
}
.testimonials-sort-box {
    padding-top: 20px;
}

.testimonials-button {
    margin: 0 auto;
    padding-bottom: 60px;
    width: 340px;
}

#search {
    width: 100%;
}

@media (max-width: 768px) {
    .testimonials-pagination {
        padding: 30px 0;
    }

    .testimonials-sort-box {
        display: flex;
        flex-direction: row-reverse;
    }
    .product-sticker {
        left: 4px;
        top: 8px;
    }
    .product-sticker .text.circle,
    .product-status.text.circle,
    .product-sticker .text.circle_corner,
    .product-status.text.circle_corner {
        width: 30px;
        height: 30px;
        font-size: 9px;
        line-height: 8px;
    }

    .product-sticker .text,
    .category-sticker .text,
    .product-status.text,
    .category-status.text {
        font-size: 7px;
    }
}

.scroll-to-reviews {
    cursor: pointer;
}

.discount-value + .sale-new-marker,
.discount-value_product + .sale-new-marker {
    top: 50px;
}

@media (max-width: 1024px) {
    .discount-value + .sale-new-marker,
    .discount-value_product + .sale-new-marker {
        top: 38px;
    }
}

.brands-seo h2 {
    font-size: 27px;
    font-weight: 600;
}
.brands-seo h3 {
    font-size: 21px;
    font-weight: 600;
}

.brands-seo b {
    font-weight: 600;
}

.brands-seo ul + p,
.brands-seo ol + p {
    padding-top: 10px;
}
.brands-seo h2 + p,
.brands-seo h2 + ol,
.brands-seo h3 + ul,
.brands-seo h3 + p,
.brands-seo h3 + ol,
.brands-seo h3 + ul {
    padding-top: 8px;
}

.brands-seo p + h2,
.brands-seo p + h3,
.brands-seo ul + h2,
.brands-seo ul + h3 {
    padding-top: 14px;
}

.brands-seo a {
    color: #ed5190;
}

.brands-seo ul,
.brands-seo ol {
    padding-left: 40px;
}

.brands-seo ul li {
    list-style: disc !important;
}
.brands-seo ol li {
    list-style: decimal !important;
}

.brands-seo {
    padding-bottom: 12px;
}

.wish-button {
    cursor: pointer;
}

.one__click:has(.wish-button) {
    top: unset;
    bottom: 30px;
}

.product-wish-button {
    position: relative;
}

.wish-button {
    width: 30px;
    height: 30px;
    position: absolute;
    left: 12px;
    bottom: 0;
    z-index: 10;
}

.wish-button svg {
    /* box-shadow: inset 0 0 0 1px #fff; */
    fill: #ff7383;
    opacity: 0.5;
    width: 25px;
    height: 25px;
}

.wish-button.wish-button-added svg {
    opacity: 1;
}

.single-product-wish-list {
    width: 100%;
}

.single-product-wish-list .product-wish-button {
    width: 100%;
}

.single-product-wish-list .wish-button {
    position: absolute;
    left: 18px;
}

.bookmark-item-cross i {
    color: #ff7383;
}

.bookmark-item-cross:hover i {
    color: #fff;
}

.products.bookmark-products {
    padding: 0 0 30px;
}
.bookmark-button {
    margin: 0 auto;
}

@media (max-width: 540px) {
    .wish-button svg {
        width: 20px;
        height: 20px;
    }

    .wish-button {
        width: 24px;
        height: 24px;
    }

    .bookmark-products .price-current {
        font-size: 16px;
    }
    .wrapper:has(.bookmark-products) .content {
        flex: unset;
    }

    #account-wishlist .breadcrumbs {
        margin-top: 40px;
    }

    #account-wishlist #content {
        padding: 0;
    }

    #account-wishlist #content .container {
        padding: 0;
    }

    .bookmark-products .products__title {
        padding-top: 20px;
    }
}


body:has(#announcement-bar) .page-nav {
    top:130px;
}

.desktop-slider .swiper-container {
    margin-top: 156px;
}

body:has(#announcement-bar) .desktop-slider .swiper-container{
    margin-top: 184px;
}

@media (max-width: 900px) {
    .desktop-slider .swiper-container {
        margin-top: 84px;
    }

    body:has(#announcement-bar) .desktop-slider .swiper-container{
        margin-top: 112px;
    }
}

@media (max-width: 380px) {
    .desktop-slider .swiper-container {
        margin-top: 76px;
    }

    body:has(#announcement-bar) .desktop-slider .swiper-container{
        margin-top: 108px;
    }
}

body:has(#announcement-bar) .page__title-box {
    margin-top: 82px;
}

@media (max-width: 540px) {
    body:has(#announcement-bar) .navbar-mobile {
        top:110px;
    }
}

.brand-sale-wrap {
    padding-top: 16px;
}

.brand-info-title {
    padding-top: 16px;
}

body:has(#announcement-bar) .brand-info-title {
    padding-top: 42px;
}


