/*NOTE: This file is intended for programmers. Aspro technical support is not advised to work with him.*/

/* Examples (uncomment to use):*/

/* Expand site width */
/* body .wrapper { max-width: 1400px !important;  } */

/* Set site background image */
/* body {  background: url(image_source) top no-repeat; }

/* Hide compare button */
/* a.compare_item { display: none !important;  }*/

.viewed_product_block {
    display: none;
}

.js-load-wrapper>.no_goods {
    display: none;
}

.prognoz p {
    font-weight: bold;
    font-size: 14px;
}

.custom-product-selector__item:before {
    display: none;
}


/* Обертка для всех блоков - flex контейнер */
.custom-product-selectors-wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    /* gap: 30px; */
    gap: 100px;
    align-items: flex-start;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    margin-top: 40px;
    background: #f8f8f8;
    padding: 40px;
}

/* Стилизация чекбокса через картинки (SVG) */
/* Цвет по умолчанию: #dc2f2f (красный плюс) */
/* При выборе (checked): зеленый плюс */

/* Скрываем нативный чекбокс */
.custom-product-selector__checkbox {
    /* position: absolute; */
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
    margin-right: 20px;
}
/* Вариант: красный плюс в круге -> зеленая галочка в круге */
.custom-product-selector__label::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dc2f2f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='8' x2='12' y2='16'/%3E%3Cline x1='8' y1='12' x2='16' y2='12'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* При выборе — зеленая галочка в круге */
.custom-product-selector__label:has(.custom-product-selector__checkbox:checked)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2327ae60' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='8 12 11 15 16 9'/%3E%3C/svg%3E");
}

/* Основной контейнер блока */
.custom-product-selector {
    flex: 1 1 auto;
    min-width: 200px;
    padding: 0;
    font-family: inherit;
    box-sizing: border-box;
}

/* Для одинаковой ширины блоков (опционально) */
.custom-product-selector {
    /* flex: 1; */
    flex: 0 1 auto;
}

/* Заголовок */
.custom-product-selector__title {
    margin: 0 0 15px 0;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: #333;
    font-family: inherit;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

/* Список внутри блока */
.custom-product-selector__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Элемент списка */
.custom-product-selector__item {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Лейбл (контейнер для чекбокса и ссылки) */
.custom-product-selector__label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    cursor: pointer;
    transition: opacity 0.2s ease;
    font-family: inherit;
}

.custom-product-selector__label:hover {
    opacity: 0.8;
}

/* Чекбокс */
.custom-product-selector__checkbox {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
}

/* Ссылка */
.custom-product-selector__link {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.2s ease;
    font-family: inherit;
}

.custom-product-selector__link:hover {
    text-decoration: underline;
}

/* Цвета для ссылок при наведении */
.custom-product-selector--adk .custom-product-selector__link:hover {
    color: #2196F3;
}

.custom-product-selector--sontact .custom-product-selector__link:hover {
    color: #4CAF50;
}

.custom-product-selector--lifting .custom-product-selector__link:hover {
    color: #FF9800;
}

/* Адаптивность */
@media (max-width: 992px) {
    .custom-product-selectors-wrapper {
        gap: 20px;
    }

    .custom-product-selector {
        min-width: 220px;
    }
}

@media (max-width: 768px) {
    .custom-product-selectors-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .custom-product-selector {
        width: 100%;
    }

    .custom-product-selector__title {
        margin-bottom: 12px;
        font-size: 15px;
    }

    .custom-product-selector__list {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .custom-product-selectors-wrapper {
        gap: 20px;
    }

    .custom-product-selector__title {
        font-size: 14px;
    }

    .custom-product-selector__link {
        font-size: 13px;
    }
}


.product-props-ptrh {
    width: 100%;
    max-width: 760px;
    font-family: Arial, sans-serif;
    color: #1f2933;
}

.product-props-ptrh__row {
    display: flex;
    align-items: center;
    min-height: 36px;
    /* padding: 0 16px; */
}

.product-props-ptrh__row:nth-child(odd) {
    /* background: #f7f7f7; */
}

.product-props-ptrh__label {
    flex: 0 0 32%;
    font-size: 14px;
    line-height: 1.3;
    color: #2f3b45;
}

.product-props-ptrh__value {
    flex: 1;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
    color: #18212b;
    text-align: right;  /* ← выравнивание по правому краю */
}

.product-props-ptrh__value--brand {
    color: #d94335;
    text-transform: uppercase;
}

@media (max-width: 600px) {
    .product-props-ptrh__row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 10px 14px;
    }

    .product-props-ptrh__label {
        flex: none;
        width: 100%;
        font-size: 14px;
    }

    .product-props-ptrh__value {
        flex: none;
        width: 100%;
        font-size: 15px;
        text-align: left;  /* ← на мобильных возвращаем влево */
    }
}


.product-info-headnote__inner>div {
    font-weight: bold;

}

.muted, .color_999 {
    color: black;
}


/* Стили для блока данные для заказа */

.responsive-image-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.responsive-img {
    /*
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
     */
}

.responsive-img {
    width: 400px !important;
    float: left !important;
}

.responsive-img:hover {
    transform: scale(1.02);
}

/* Стили для блока данные для заказа */

.responsive-image-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.responsive-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.responsive-img:hover {
    transform: scale(1.02);
}

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

/* Уникальные классы для блока с двумя картинками */
.gallery-duo-7f3k9 {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    width: 100%;
}

.gallery-duo-7f3k9__item {
    /* flex: 1 1 300px; */
    min-width: 0;
}

.gallery-duo-7f3k9__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Адаптивность */
@media (max-width: 768px) {
    .gallery-duo-7f3k9 {
        gap: 15px;
    }

    .gallery-duo-7f3k9__item {
        flex: 1 1 250px;
    }
}

@media (max-width: 640px) {
    .gallery-duo-7f3k9 {
        flex-direction: column;
        gap: 15px;
    }

    .gallery-duo-7f3k9__item {
        flex: 1 1 auto;
    }

    /* Опционально: фиксированная высота для картинок на мобилках */
    .gallery-duo-7f3k9__image {
        height: auto;
        aspect-ratio: 16 / 9;
    }
}

.gallery-duo-7f3k9__item img {
    max-width: 100px;
    float: left;

}

.properties-group--table .properties-group__items {
    display: block;
}

.properties-group__group .properties-group__group-name {
    padding: 10px;
    background: #f8f8f8;
}

.properties-group__name-wrap {
    padding-left: 10px;
}

.product-specs {
    width: 100%;
    max-width: 960px;
}

.product-specs__row {
    display: flex;
   /* border-bottom: 1px solid #e5e7eb; */
}

.product-specs__row:last-child {
    border-bottom: none;
}

.product-specs__label {
    flex: 0 0 20%;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.3;
    color: #6b7280;
    font-weight: 500;
}

.product-specs__value {
    flex: 0 0 20%;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
    color: #111827;
    background: #ffffff;
    /* border-left: 1px solid #e5e7eb; */
}

/* Чередование фона по строкам */
.product-specs__row:nth-child(even) .product-specs__label {
    background: #ffffff;
}

.product-specs__row:nth-child(even) .product-specs__value {

}

/* Адаптив */
@media (max-width: 640px) {
    .product-specs__row {
        flex-direction: column;
        border-bottom: none;
        margin-bottom: 12px;
        /* border: 1px solid #e5e7eb; */
        border-radius: 8px;
    }

    .product-specs__label,
    .product-specs__value {
        flex: none;
        width: 100%;
        border-left: none;
        border-bottom: 1px solid #e5e7eb;
        padding: 10px 14px;
    }

    .product-specs__value:last-child {
        border-bottom: none;
    }

    .product-specs__row:nth-child(even) .product-specs__label,
    .product-specs__row:nth-child(even) .product-specs__value {
        background: #ffffff;
    }
}

.docs-cart img {
    margin: 0px;
}

.tab-content .ordered-block {
    display: none;
}

.tabs .nav-tabs li.active a {
    background: #dc2f2f;
    color: white;
    font-weight: bold;
}


.tabs .nav-tabs li.bordered a:hover, .tabs .nav-tabs li.bordered a:active, .tabs .nav-tabs li.bordered a:focus {
    background: #dc2f2f;
    color: white;
    font-weight: bold;
}

.arrow_scroll .nav.nav-tabs>li {
    background: black;
}

.tabs .nav-tabs li a, .tabs .nav-tabs li>span {
    color: white;
    font-weight: bold;
}

.basket_action .remove_all_basket.cur {
    font-size: 13px;letter-spacing: 0.5px;
}

.tabs .nav-tabs li {
    margin: 0px;
}

/* стили заголовка товара в корзине */

#basket-root .basket-item-info-name, #basket-root .basket-item-info-name-link {
    color: #dc2f2f !important;
    font-weight: bold;
}

/* стили блока артикул в корзине */

.basket-item-property-custom.basket-item-property-custom-text.hidden-xs,
.basket-item-property-custom.basket-item-property-custom-text.hidden-xs * {
    font-weight: 700 !important;
}

.basket-item-property-custom.basket-item-property-custom-text.hidden-xs {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
}

.basket-item-property-custom-name {
    white-space: nowrap !important;
    color: #333 !important;
    flex-shrink: 0 !important;
}

.basket-item-property-custom-value {
    white-space: nowrap !important;
    color: black !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* стили блока цен в корзине под выбором наличия */

.basket-item-price-current-text {
    font-weight: bold;
    color: black !important;
}

.basket-items-list-item-amount-outer .basket-item-amount-filed {
    font-weight: bold !important;
    color: black !important;
}


/* Стиль для контейнера кнопки удаления */
.basket-item-actions-remove {
    display: inline-block;
    width: 24px;
    height: 24px;
    cursor: pointer;
    position: relative;
    border: 2px solid #000000; /* Уменьшенная толщина рамки (было 3px → стало 2px) */
    border-radius: 3px;
    background-color: transparent;
    transition: border-color 0.3s ease;
}

/* Рисуем крестик (X) через псевдоэлементы */
.basket-item-actions-remove::before,
.basket-item-actions-remove::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px; /* Немного уменьшил длину для пропорции */
    height: 2px; /* Уменьшенная толщина линии крестика (было 3px → стало 2px) */
    background-color: #000000 !important; /* ✅ Четко черный цвет */
    border-radius: 1px;
    transition: background-color 0.3s ease;
}

/* Первая линия — диагональ 45° */
.basket-item-actions-remove::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

/* Вторая линия — диагональ -45° */
.basket-item-actions-remove::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.basket_action .remove_all_basket.cur {
    color: black;
    font-weight: bold;
}

.basket_hover_block .tabs_content .item .cost.prices .price_name {
    display: none;
}

.product_name {
    /* Базовое оформление */
    font-size: 14px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 5px;

}

.product_name a {
    /* Оформление ссылки с названием товара */
    color: #222222;
    text-decoration: none;
    transition: color 0.2s ease;
    color: #dc2f2f !important;
}

.product_name a:hover {
    color: #e52d2d; /* или любой другой цвет при наведении */
    text-decoration: underline;
}

.basket_hover_block .tabs_content .buttons .basket_back a {
    color: black !important;
    font-weight: bold;
}
.basket_hover_block .tabs_content .buttons .basket_back a:hover {
    color: white !important;
    font-weight: bold;
}

.basket_hover_block .tabs_content .buttons a {
    font-weight: bold;
}


.cost.prices .price.discount {
    display: none;
}

.sale_block {
    display: none;
}


.basket-item-price-old {
    display: none;
}

#basket-root .basket-item-price-difference, #basket-root .basket-checkout-block-total-price-inner .basket-coupon-block-total-price-difference  {
    display: none;
}

#bx-soa-delivery .bx-soa-section-title-container {
    display: none;
}


.discount {
    display: none;
}

.stickers:not(.custom-font) [class*="sticker_"] {
    display: none;
}

.basket-coupon-total-price-difference {
    display: none;
}

.bx-soa-cart-total > :nth-child(6) {
    display: none;
}

.bx-soa-pp-company[data-id="5"] {
    display: none;
}

#orderDescription {
    height: 200px;
}

.product-chars a {
    max-width: 165px;
}

.bx_filter_parameters .active {
    background: #f0f1f2;
}

.bx_filter .bx_filter_parameters_box:not(.title):hover {
    background: #f0f1f2;
}

.bx_filter .bx_filter_parameters_box {
    border-bottom: none !important;

}

.catalog_block .item-stock, .catalog_block .article_block {
    display: block !important;
    padding-top: 5px;
}

.bx_filter:not(.compact) .bx_filter_parameters_box .title-wrapper {
    font-size: 14px;
    font-weight: bold;

}


@media screen and (min-width: 1024px) {
    .info_item {
        min-width: 300px;
        float: right;
    }
}

    @media (min-width: 768px) {
        .product-info--type2 .product-chars {
            padding-right: 0px;
        }
    }

.cookie-banner{
    display: none;
}

.cookie-banner.active{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background:#c4010b;
    color: #fff;
    z-index: 99999999;
    padding-top: 1em;
}

.cookie-banner.active .string{
    margin-bottom: 1em;
    padding-left: 10px;
    padding-right: 10px;
}

.cookie-banner.active .string a{
    color: #fff;
    font-weight: 500;
    text-decoration: underline;
    white-space: nowrap;
}

.cookie-banner.active button{
    border-radius: 3px;
    background: #fff;
    padding: 7px 24px;
    border: none;
    color: #c4010b;
    cursor: pointer;
    text-transform: uppercase;
    position: relative;
    margin-left: 15px;
}

@media screen and (max-width: 767px) {
    .cookie-banner.active .string{font-size: 12px;padding-left: 10px;padding-right: 10px}
    .cookie-banner.active button{top: 0;margin-left: 0}
}

.new_foot_logo img {
    width: 50%;
}

.grid-2col {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.new_foot_logo {
    flex: 0 1 auto;
}

.svyaz {
    display: block;
    color: #999999;
    font-size: 14px;
    padding-top: 8px;
}

.svyaz:hover {
    color: white;
}

.new_foot_logo img {
    max-width: 100%;
    height: auto;
}

.grid-2col__right {
    flex: 0 1 auto;
    margin-left: 150px;
    text-align: right;
}

/* Планшеты и телефоны */
@media (max-width: 767px) {
    .grid-2col {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .grid-2col__right {
        width: 100%;
        margin-left: 0;
        text-align: left;
        display: flex;
        justify-content: center;
    }

 }

.foot-center {
    text-align: center;
}

.foot-link a {
    color: white;
}

.foot-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.foot-link__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.foot-link__item:hover {
    color: #ffffff;
    opacity: 0.7;
}

.foot-link__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
}

.foot-link__icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: #ffffff;
}

@media (max-width: 767px) {
    .foot-link__item {
        gap: 8px;
    }

    .foot-link__icon {
        flex-basis: 22px;
        width: 22px;
        height: 22px;
    }
}


footer .social-icons ul {
    background: #242424;
}


/* Кнопка раскрытия списка */
.custom-product-selector__more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--theme-base-color, #dc2f2f);
    font: inherit;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.custom-product-selector__more:hover {
    opacity: 0.75;
}

.custom-product-selector__more::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s ease;
}

/* Стрелка при раскрытом списке */
.custom-product-selector__more.is-open::after {
    transform: rotate(225deg) translate(-2px, -2px);
}

@media (max-width: 767px) {
    .custom-product-selector__more {
        margin-top: 10px;
        font-size: 14px;
    }
}




.lg.item-views.company .item.video-block .image {
    padding-top: 0%;
}




 .foot-link {
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     gap: 10px;
 }

.foot-link__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.foot-link__item:hover {
    color: #ffffff;
}

.foot-link__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
}

.foot-link__icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: #ffffff;
    transition: fill 0.2s ease;
}

/* Rutube — синяя иконка при наведении */
.foot-link__item--rutube:hover .foot-link__icon svg {
    fill: #00a1e7;
}

/* YouTube — красная иконка при наведении */
.foot-link__item--youtube:hover .foot-link__icon svg {
    fill: #ff0000;
}

@media (max-width: 767px) {
    .foot-link__item {
        gap: 8px;
    }

    .foot-link__icon {
        flex-basis: 22px;
        width: 22px;
        height: 22px;
    }
}

.dn {
    display: none;
}

.shop-detail1 .social-block {
    display: none;
}



.title-search-price {
    display: none;
}

.catalog_section_list .item_block.lg .section_item:hover {
    border-color: red;
}

.item-wrapper {
    padding-bottom: 20px;
}

.item-views.tizers .item-wrapper > .item {
    padding-bottom: 0px;
}

.wrapper_inner.front .drag-block.container .content_wrapper_block > .maxwidth-theme, .wrapper_inner.front .drag-block.container > .maxwidth-theme, .wraps .wrapper_inner.front .drag-block.container > .grey_block > .maxwidth-theme {
    padding-top: 20px;
}

.wrapper1:not(.with_left_block) .wrapper_inner.front .drag-block.container .content_wrapper_block > .maxwidth-theme {
    padding-top: 20px;
    padding-bottom: 20px;
}

.item-views.tizers:not(.top) .item-wrapper > .item .image {
    max-width: 80px !important;
}

.item-views.tizers .item-wrapper > .item .image {
    max-height: 80px !important;
}

.item-views.sales .bottom_nav .ajax_load_btn {
    display: none;
}

.wrapper1:not(.with_left_block) .wrapper_inner.front .drag-block.container .sections_wrapper:not(.smalls) {
    padding-bottom: 0px;
}

body .top_block a, body .top_block > span {
    color: #dc2f2f;
    font-weight: bold;
}

.item-views.tizers {
    padding: 0px;
}

.wrapper1:not(.with_left_block) .wrapper_inner.front .drag-block.container .content_wrapper_block > .maxwidth-theme {
    padding-bottom: 0px;
}

.shares-block {
    display: none;
}

.rss {
    display: none;
}

.in-search .slide-block .slide-block__body .menu .item a {
    text-transform: uppercase;
}

.in-search .slide-block .slide-block__body .menu .item:not(:first-child) a {
    border-top: 0px !important;
}


.in-search .slide-block .slide-block__body .menu .item a:hover {
    color: red;
}


.menu_top_block .menu .full.has-child .name {
    text-transform: uppercase !important;
}

.menu_top_block .menu .full.has-child .name:hover {
    color: red;
}

.menu_top_block.catalog_block .dropdown > li.full.current > a, .left_menu > li.current > a {
    color: red;
}

div.bx_filter_parameters_box[data-property_name="Розничная цена"] {
    display: none;
}

.section-compact-list__image {
    --image-width: 140px;
    --image-height: 140px;
}

body .box-shadow:hover {
    border-color: red;
}


.block-item__cost.cost {
    display: none;
}