

/* Start:/local/templates/аrbq/components/bitrix/catalog/catalog_arbq/style.css?17644392644165*/
.catalog-section-container {
    padding-bottom: 90px;
    display: flex;
    gap: 40px;
}

.section-elements-container {
    width: 100%;
}

.sort-pagination-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
    padding-bottom: 40px;
}

.sort-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all ease var(--transition-speed);
    padding: 0 7.5px;
    border-radius: 6px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: var(--main-darck);

}

.sort-dropdown-toggle:hover {
    color: var(--main-red);
    transition: all ease var(--transition-speed);
}

#sort-chevron {
    color: #9ca3af;
    transition: all ease var(--transition-speed);
    width: 12px;
    height: 12px;
}

#sort-chevron.rotate-180 {
    transform: rotate(180deg);
}

.sort-dropdown-menu {
    position: absolute;
    left: 0;
    margin-top: 8px;
    width: inherit;
    background-color: var(--text-white);
    border-radius: 6px;
    box-shadow: 0 7px 20px 0 var(--drop-shadow);
    z-index: 2;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sort-title {
    font-size: 14px;
    font-weight: 500;
}

.dropdown-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--main-darck);
    transition: all ease var(--transition-speed);
    font-size: 14px;
    font-weight: 400;
}

.dropdown-label:hover {
    color: var(--main-red);
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 400;
    color: var(--main-darck);
}

.pagination-label {
    color: var(--main-darck);
    white-space: nowrap;
}

.count-buttons-group {
    display: flex;
    align-items: center;
    gap: 6px;
}

.page-count-button {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all ease var(--transition-speed);
    color: var(--main-darck);
    background: none;
    border: 1px solid transparent;
}

.page-count-button:hover, .page-count-button.selected-count {
    border: 1px solid var(--button-gray-bg);
}

.relative {
    position: relative;
}

.hidden {
    display: none;
}

.mobile-filter-btn-toggle {
    display: none;
}

.btns-sort-and-filter {
    display: flex;
    align-items: center;
    gap: 24px;
}

.search-header .section-title {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 60px;
}

.search-header .section-title h1 {
    font-weight: 700;
    font-size: 32px;
    line-height: 125%;
    color: var(--main-darck);
    max-width: 80%;
}

.search-header .section-title span {
    font-weight: 600;
    font-size: 24px;
    line-height: 125%;
    color: var(--text-darck-opacity);
}

@media (max-width: 1025px) {
    .filter-container {
        position: fixed;
        top: 0;
        left: 0;
        background-color: var(--text-white);
        z-index: 10;
        padding: 48px 24px 20px;
        width: 100%;
        height: 100%;
        overflow-y: auto;
        display: none;
    }

    .mobile-filter-btn-toggle {
        display: flex;
        font-weight: 400;
        font-size: 16px;
        line-height: 100%;
        color: var(--main-darck);
        gap: 7px;
        width: 100%;
    }

    .sort-pagination-container {
        justify-content: space-between;
    }
}

@media (max-width: 767px) {
    .sort-pagination-container, .btns-sort-and-filter {
        flex-direction: column;
        align-items: flex-start;
        gap: 26px;
        width: 100%;
    }
    #sort-dropdown-container{
        width: 100%;
    }
    .sort-dropdown-toggle {
        padding: 0;
        justify-content: space-between;
    }

    .mobile-filter-btn-toggle {
        font-size: 14px;
        justify-content: space-between;
    }

    .catalog-colored {
        background-color: var(--section-color);
    }

    .sort-title, .dropdown-label {
        font-size: 12px;
    }
}
/* End */


/* Start:/local/templates/аrbq/components/bitrix/catalog/catalog_arbq/bitrix/catalog.element/.default/style.css?176443926441516*/
.container-detail-element {
    padding: 0 0 90px;
}

.detail-element-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 62px;
}

.element-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 125%;
    color: var(--main-darck);
}

.element-header-right-block {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    color: var(--main-darck);
}

.article-block, .share-btn, .print-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all ease var(--transition-speed);
}

.share-btn:hover, .share-btn:hover svg path, .print-btn:hover, .print-btn:hover svg path {
    color: var(--main-red);
    stroke: var(--main-red);
    transition: all ease var(--transition-speed);
}

.slider-head-info {
    display: flex;
    gap: 40px;
    padding-bottom: 90px;
}

.slider-block, .description-block, .buttons-price-block {
    width: calc(33% - 23px);
}

.product-item-detail-info-section {
    padding: 0;
}

@media (max-width: 992px) {
    .product-item-detail-info-section {
        padding: 0;
    }
}

.product-item-detail-info-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.model-block {
    display: flex;
    align-items: center;
    gap: 20px;
}

.model-block-title {
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color: var(--main-darck);
}

.model-block-value {
    background: var(--light-gray-bg);
    border-radius: 4px;
    padding: 12px;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: var(--main-darck);

}

.product-item-detail-properties {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-item-detail-property {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-item-detail-property-name {
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    color: var(--text-darck-opacity);
}

.product-item-detail-property-value {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: var(--main-darck);
}

.guarantee-special-price-block {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 12px;
}

.guarantee-special-price-block-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.guarantee-special-price-block-item-logo {
    width: 32px;
    height: 32px;
}

.guarantee-special-price-block-item-title {
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color: var(--main-darck);
}

.product-item-detail-quantity-container {
    display: flex;
    align-items: center;
}

.product-item-detail-quantity-container-title {
    background: var(--main-darck);
    border-radius: 4px;
    padding: 7px 12px;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: var(--text-white);
}

.product-item-detail-pay-block {
    padding: 24px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: var(--text-white);
    box-shadow: 0 7px 20px 0 var(--drop-shadow);
    transition: box-shadow var(--transition-speed);
}

.bx-retina .product-item-detail-pay-block {
    border-width: .5px;
}

.product-leasing-block {
    border-radius: 6px;
    padding: 24px;
    background: var(--light-gray-bg);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-leasing-top-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 4px 0 16px;
}

.leasing-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    color: var(--main-darck);
}

.leasing-button {
    border-radius: 4px;
    border: 1px solid var(--text-darck-opacity);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    padding: 9px 12px;
    color: var(--text-darck-opacity) !important;
    text-decoration: none;
    transition: all ease var(--transition-speed);
}

.leasing-button:hover ,
.leasing-button:link,
.leasing-button:visited ,
.leasing-button:active
{
    text-decoration: none;
    border: 1px solid var(--main-darck);
    color: var(--main-darck) !important;
    transition: all ease var(--transition-speed);
}

.product-leasing-main-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--text-darck-opacity);
}

.leasing-main-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    font-size: 14px;
    line-height: 125%;
    color: var(--main-darck);
    margin-bottom: 7px;
}

.leasing-main-btn .read-price {
    color: var(--main-red);
    font-weight: 700;
}

.leasing-main-advance, .leasing-main-time-contract {
    font-weight: 400;
    font-size: 14px;
    line-height: 125%;
    color: var(--text-darck-opacity);
}

.product-leasing-bottom-block {
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-leasing-bottom-block span {
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    margin-top: 3px;
    color: var(--main-darck);
}

/*Compare*/
.product-item-detail-compare-container {
    position: relative;
    margin: 0 -20px;
    padding: 4px 15px;
    min-height: 30px;
    border-top: 1px solid #e4e4e4;
    background: #f3f3f3;
    box-shadow: inset 0 1px 1px 0 #eee;
    color: #4e4e4e;
    vertical-align: middle;
    font-size: 12px;
    line-height: 20px;
}

.product-item-detail-compare .checkbox {
    margin: 0;
    padding: 0;
}

/* Price */
.product-item-detail-price-current {
    color: var(--main-red);
    font-weight: 700;
    font-size: 32px;
    line-height: 125%;
    text-transform: uppercase;
    white-space: nowrap;
}

.product-item-detail-price-old {
    color: #bdbdbd;
    text-decoration: line-through;
    white-space: nowrap;
    font-weight: var(--ui-font-weight-bold);
    font-size: 14px;
    line-height: 17px;
}

/* SCU */
.product-item-scu-container {
    padding: 0 0 2px;
}

.product-item-scu-container-title {
    color: #333;
    font-size: 12px;
}

.product-item-scu-block {
}

.product-item-scu-list {
    margin: 0;
}

.product-item-scu-item-list {
    overflow: hidden;
    margin: 0 0 0 -2px;
    padding: 0;
    list-style: none;
}

.product-item-scu-item-color-container,
.product-item-scu-item-text-container {
    display: inline-block;
    box-sizing: border-box;
    padding: 5px 3px;
    max-width: 100%;
    vertical-align: middle;
}

.product-item-scu-item-text-container {
    min-width: 48px;
}

.product-item-scu-item-color-container {
    max-width: 38px;
    width: 25%;
}

.product-item-scu-item-color-block {
    position: relative;
    padding-top: 100%;
    outline: 1px solid #c0cfda;
    cursor: pointer;
}

.bx-no-touch .product-item-scu-item-color-block {
    transition: outline 200ms ease;
}

.bx-retina .product-item-scu-item-color-block {
    outline-width: .5px;
}

.product-item-scu-item-color-container.selected .product-item-scu-item-color-block {
    outline-width: 2px;
}

.bx-retina .product-item-scu-item.selected .product-item-scu-item-color-block {
    outline-width: 1px;
}

.product-item-scu-item-color {
    position: absolute;
    top: 2px;
    right: 2px;
    bottom: 2px;
    left: 2px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.product-item-scu-item-text-block {
    position: relative;
    padding: 0 5px;
    outline: 1px solid #c0cfda;
    cursor: pointer;
}

.bx-no-touch .product-item-scu-item-text-block {
    transition: outline 300ms ease;
}

.bx-retina .product-item-scu-item-text-block {
    outline-width: .5px;
}

.product-item-scu-item-text-container.selected .product-item-scu-item-text-block {
    outline-width: 2px;
}

.bx-retina .product-item-scu-item.selected .product-item-scu-item-text-block {
    outline-width: 1px;
}

.product-item-scu-item-text {
    overflow: hidden;
    max-width: 100%;
    vertical-align: middle;
    text-align: center;
    text-transform: uppercase;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 11px;
    line-height: 18px;
}

.product-item-scu-item-color-container.notallowed .product-item-scu-item-color-block,
.product-item-scu-item-text-container.notallowed .product-item-scu-item-text-block {
    position: relative;
    overflow: hidden;
    outline-color: #a9adb4 !important;
}

.product-item-scu-item-color-container.notallowed .product-item-scu-item-color-block:after,
.product-item-scu-item-text-container.notallowed .product-item-scu-item-text-block:after {
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    background: rgba(255, 255, 255, 0.75) url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNiIgaGVpZ2h0PSIyNiIgdmlld0JveD0iMCAwIDI2IDI2Ij4gIDxwYXRoIGZpbGw9IiNBOUFEQjQiIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTE0LjM5MjEyNjgsMTMuMjMyMzAyOSBMMjUuOTkyLDEuNDE4IEwyNC42LDAgTDEyLjk5OTk5NTYsMTEuODE0NDM2NCBMMS40LDAgTDAuMDA5LDEuNDE5IEwxMS42MDc4Njg3LDEzLjIzMjI5NzUgTDAuNDczLDI0LjU3MyBMMS44NjUsMjUuOTkxIEwxMi45OTk5OTkzLDE0LjY1MDE2NDUgTDI0LjEzNCwyNS45OSBMMjUuNTI2LDI0LjU3MiBMMTQuMzkyMTI2OCwxMy4yMzIzMDI5IFoiLz48L3N2Zz4=) no-repeat center;
    background-size: 80% 80%;
    content: "";
}

.product-item-selected-scu-container {
    word-spacing: 1px
}

.product-item-selected-scu {
    display: inline-block;
    overflow: hidden;
    padding: 0 5px;
    min-width: 22px;
    height: 22px;
    outline: 1px solid #c0cfda;
    vertical-align: middle;
    text-align: center;
    text-transform: uppercase;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 11px;
    line-height: 22px;
}

.bx-retina .product-item-selected-scu {
    outline-width: .5px;
}

.product-item-selected-scu-color {
    background-position: center;
    background-size: 20px 20px;
    background-repeat: no-repeat;
}

/*Amount*/
.product-item-amount {
    padding: 0 0 2px;
    text-align: center;
}

.product-item-amount-field-container {
}

.product-item-amount-field-btn-plus,
.product-item-amount-field-btn-minus {
    position: relative;
    display: inline-block;
    min-width: 22px;
    height: 22px;
    border-radius: 2px;
    background-color: #f2f2f2;
    color: #fff;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    transition: background 300ms ease, opacity 300ms ease;
}

.bx-retina .product-item-amount-field-btn-plus,
.bx-retina .product-item-amount-field-btn-minus {
    border-width: .5px;
}

.product-item-amount-field-btn-plus:hover,
.product-item-amount-field-btn-minus:hover {
    background: #d3d3d3;
}

.product-item-amount-field-btn-plus:after,
.product-item-amount-field-btn-minus:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    opacity: .8;
    transition: opacity 300ms ease, background 300ms ease;
}

.product-item-amount-field-btn-disabled.product-item-amount-field-btn-plus:after,
.product-item-amount-field-btn-disabled.product-item-amount-field-btn-minus:after {
    opacity: .3 !important;
    cursor: default;
}

.product-item-amount-field-btn-disabled.product-item-amount-field-btn-plus:hover,
.product-item-amount-field-btn-disabled.product-item-amount-field-btn-minus:hover {
    background-color: #f2f2f2;
}

.product-item-amount-field-btn-minus:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    opacity: .8;
    transition: opacity 300ms ease;
}

.product-item-amount-field-btn-plus:after {
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIgdmlld0JveD0iMCAwIDMwIDMwIj4gIDxwYXRoIGZpbGw9IiM1MjVDNjgiIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTE4LDEyIEwxOCwwIEwxMiwwIEwxMiwxMiBMMCwxMiBMMCwxOCBMMTIsMTggTDEyLDMwIEwxOCwzMCBMMTgsMTggTDMwLDE4IEwzMCwxMiBMMTgsMTIgWiIvPjwvc3ZnPg==) no-repeat center;
    background-size: 10px;
}

.product-item-amount-field-btn-minus:after {
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIgdmlld0JveD0iMCAwIDMwIDMwIj4gIDxyZWN0IHdpZHRoPSIzMCIgaGVpZ2h0PSI2IiB5PSIxMiIgZmlsbD0iIzUyNUM2OCIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+) no-repeat center;
    background-size: 10px;
}

.product-item-amount-field-btn-plus:hover:after,
.product-item-amount-field-btn-minus:hover:after {
    opacity: 1;
}

.product-item-amount-field {
    display: inline-block;
    padding: 0;
    max-width: 50px;
    width: auto;
    height: 22px;
    border: 1px solid transparent;
    border-radius: 2px;
    background: transparent !important;
    color: #000;
    vertical-align: middle;
    text-align: center;
    font-weight: var(--ui-font-weight-bold);
    font-size: 19px;
    line-height: 22px;
    transition: border 300ms ease;
}

.bx-retina .product-item-amount-field {
    border-width: .5px;
}

.product-item-amount-field:focus {
    outline: none !important;
}

.bx-no-touch input.product-item-amount-field::-webkit-outer-spin-button,
.bx-no-touch input.product-item-amount-field::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

.product-item-amount-description-container {
    color: #a5a5a5;
    white-space: nowrap;
    font-size: 12px;
}

.product-item-amount-description-container strong {
    color: #333;
    white-space: nowrap;
}

.product-item-amount-label-container {
    margin: 5px 0;
    color: #a5a5a5;
    font-weight: var(--ui-font-weight-bold);
    font-size: 12px;
}

/**/
.product-item-quantity {
    color: #333;
    font-weight: normal;
    font-size: 12px;
}

/*Buy button*/

.product-item-detail-btn-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn.buy-button {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 250px;
    width: 100%;
    height: 50px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.02em;
    line-height: 100%;
    opacity: 1;
    padding: 15px 26px;
    border-radius: 6px;
    background-color: var(--main-red);
    color: var(--text-white);
    text-decoration: none;
    transition: box-shadow var(--transition-speed);
}

.btn.buy-button:hover {
    background-color: var(--main-red-hover);
    text-decoration: none;
    transition: box-shadow var(--transition-speed);
}

.product-item-detail-short-card-btn .btn.buy-button {
    margin: 0;
}

.main-button-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.favorite-button {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--text-darck-opacity);
    transition: box-shadow var(--transition-speed);
    cursor: pointer;
}

.favorite-button.active svg path, .favorite-button:hover svg path {
    fill: var(--main-red);
    transition: box-shadow var(--transition-speed);
}

.favorite-button:hover {
    transition: box-shadow var(--transition-speed);
}

.btn-link.buy-button {
    height: 50px;
}

.buttons-note {
    font-weight: 400;
    font-size: 12px;
    line-height: 130%;
    color: var(--main-darck);
}

/* Slider */
.product-item-detail-slider-container {
    position: relative;
    max-width: 100%;
    background: transparent;
    transition: background 800ms ease;
}

.product-item-detail-slider-block {
    position: relative;
    box-sizing: border-box;
    padding-top: 77.25%;
    height: 0;
}

.product-item-detail-slider-block.product-item-detail-slider-block-square {
    padding-top: 100%;
}

.product-item-detail-slider-images-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.product-item-detail-slider-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    opacity: 0;
    transition: opacity 250ms linear;
}

.product-item-detail-slider-image.active {
    z-index: 8;
    opacity: 1;
}

.product-item-detail-slider-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    max-height: 100%;
    outline: 1px solid transparent;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-size 450ms ease, width 450ms ease, height 450ms ease, outline 450ms ease;
    transform: translateY(-50%) translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
}

.product-item-detail-slider-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
    height: 3px;
}

/*Slider Controls*/
.product-item-detail-slider-controls-block {
    padding: 12px 12px 0 0;
    display: flex;
    gap: 6px;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-item-detail-slider-controls-block::-webkit-scrollbar {
    display: none;
}

.product-item-detail-slider-controls-image {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 67px;
    min-width: 67px;
    height: 60px;
    outline: 1px solid var(--border-color);
    background-color: #fff;
    text-align: center;
    cursor: pointer;
    border-radius: 6px;
}

.bx-retina .product-item-detail-slider-controls-image {
    outline-width: .5px;
}

.bx-no-retina .product-item-detail-slider-controls-image.active {
    outline-width: 0;
}

.bx-retina .product-item-detail-slider-controls-image.active {
    outline-width: 0;
}

.product-item-detail-slider-controls-image img {
    max-width: 67px;
    max-height: 60px;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    object-fit: cover;
}

.product-item-detail-slider-left,
.product-item-detail-slider-right {
    position: absolute;
    top: 50%;
    bottom: 50%;
    z-index: 9;
    display: block;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0) url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2230%22%20viewBox%3D%220%200%2016%2030%22%3E%3Cpolygon%20fill%3D%22%23000000%22%20fill-rule%3D%22evenodd%22%20points%3D%2216%2050%202%2036%2016%2022%2015%2021%201%2035%200%2036%201%2037%2015%2051%22%20transform%3D%22translate(0%20-21)%22%2F%3E%3C%2Fsvg%3E') no-repeat center;
    cursor: pointer;
    transition: all 300ms ease;
    background-color: var(--text-white);
    border-radius: 50%;
    background-size: 9px;
    box-shadow: 0px 5.44px 15.56px 0px var(--drop-shadow);
}

.product-item-detail-slider-left {
    left: 35px;
}

.product-item-detail-slider-right {
    right: 35px;
    transform: rotate(180deg);
}

.product-item-detail-slider-left:hover,
.product-item-detail-slider-right:hover {
    opacity: 1;
}

.product-item-detail-slider-close {
    display: none;
}

.product-item-detail-slider-container.popup .product-item-detail-slider-close {
    position: absolute;
    top: 4px;
    right: 110px;
    bottom: 0;
    z-index: 11;
    display: block;
    width: 50px;
    height: 50px;
    background: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpolygon%20fill%3D%22%23000000%22%20fill-rule%3D%22evenodd%22%20points%3D%2216%2015.1%208.944%208%2016%201%2015.006%200%208.05%207%20.994%200%200%201%207.056%208%200%2015.1%20.994%2016%208.05%209%2015.006%2016%22%2F%3E%3C%2Fsvg%3E') no-repeat center;
    opacity: .27;
    cursor: pointer;
    transition: all 300ms ease;
}

.product-item-detail-slider-container.popup .product-item-detail-slider-close:hover {
    opacity: 1;
}

.product-item-detail-slider-container.popup .product-item-detail-slider-right {
    right: 105px;
}

/*magnified*/
.product-item-detail-slider-container.magnified .product-item-detail-slider-image {
    z-index: 9;
}

.product-item-detail-slider-container.magnified .product-item-detail-slider-image img {
    outline-color: #ddd;
}

.product-item-detail-slider-container.magnified .product-item-detail-slider-left,
.product-item-detail-slider-container.magnified .product-item-detail-slider-right {
    z-index: 10;
}

.product-item-detail-slider-container.magnified .product-item-label-text,
.product-item-detail-slider-container.magnified .product-item-label-ring {
    opacity: 0;
}

/*	>>>	popup*/
.product-item-detail-slider-container.popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    background: #fff;
    animation-name: imgPopupShow;
    animation-duration: 300ms;
}

.product-item-detail-slider-container.popup .product-item-detail-slider-images-container {
    right: 105px;
}

.product-item-detail-slider-container.popup .product-item-detail-slider-block {
    padding-top: 0;
    height: 100vh;
}

.product-item-detail-slider-container.popup .product-item-detail-slider-image {
    position: absolute;
    top: 50%;
    left: 50%;
    max-height: 100vh;
    width: calc(100% - 150px);
    transform: translateY(-50%) translateX(-50%);
}

@-webkit-keyframes imgPopupShow {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes imgPopupShow {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-ms-keyframes imgPopupShow {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-o-keyframes imgPopupShow {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes imgPopupShow {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.product-item-detail-slider-container.popup .product-item-detail-slider-image img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    cursor: default
}

.product-item-detail-slider-container.popup .product-item-detail-slider-controls-block {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    padding: 20px;
    border-left: 1px solid #d3d3d3;
    background-color: #fff;
    flex-direction: column;
}

.product-item-detail-slider-container.popup .product-item-detail-slider-controls-image {
    display: block;
    margin-bottom: 20px;
}

/* Slider Mobile*/
@media (max-width: 767px) {
    .product-item-detail-slider-container.popup .product-item-detail-slider-images-container {
        right: 0;
    }

    .product-item-detail-slider-container.popup .product-item-detail-slider-block {
        padding-top: 0;
        height: calc(100vh - 111px);
    }

    .product-item-detail-slider-container.popup .product-item-detail-slider-image {
        width: 90%;
    }

    .product-item-detail-slider-container.popup .product-item-detail-slider-image img {
        max-width: 100%;
        max-height: calc(100vh - 115px);
        width: auto;
        cursor: default;
    }

    .product-item-detail-slider-container.popup .product-item-detail-slider-controls-block {
        position: absolute;
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        overflow-x: auto;
        max-height: 111px;
        border-top: 1px solid #d3d3d3;
        border-left: none;
        white-space: nowrap;
        flex-direction: row;
    }

    .product-item-detail-slider-container.popup .product-item-detail-slider-controls-image {
        display: inline-block;
        margin-bottom: 0;
    }

    .product-item-detail-slider-container.popup .product-item-detail-slider-close {
        right: 10px;
        z-index: 10;
    }

    .product-item-detail-slider-left,
    .product-item-detail-slider-right {
        max-width: 75px;
    }

    .product-item-detail-slider-container.popup .product-item-detail-slider-right {
        right: 0;
    }

}

/*Label*/
.product-item-label-text,
.product-item-label-ring {
    position: absolute;
    z-index: 9;
    opacity: 1;
    transition: opacity 450ms ease;
}

.product-item-label-text span,
.product-item-label-ring {
    display: inline-block;
    clear: both;
    margin-bottom: 2px;
    background: #f42c2c;
    color: #fff;
    vertical-align: middle;
    text-align: center;
    transition: all 250ms ease;
}

.bx-red .product-item-label-text span,
.bx-red .product-item-label-ring {
    background-color: #fba90c;
}

.product-item-label-text > div,
.product-item-label-ring > div {
    line-height: 0;
}

.product-item-detail-slider-container.popup .product-item-label-text,
.product-item-detail-slider-container.popup .product-item-label-ring {
    display: none;
}

/* TEXT */
.product-item-label-text span {
    padding: 2px 5px;
    vertical-align: middle;
    font-weight: var(--ui-font-weight-bold);
}

.product-item-label-text.product-item-label-small span {
    margin-bottom: 1px;
    padding: 2px 7px;
    font-weight: normal;
    font-size: 13px;
    line-height: 14px;
}

.product-item-label-text.product-item-label-big span {
    padding: 4px 10px;
    font-size: 13px;
    line-height: 17px;
}

@media (max-width: 767px) {
    .product-item-label-text > div {
        line-height: 0;
    }

    .product-item-label-text.product-item-label-small span,
    .product-item-scalable-card.hover .product-item-label-text.product-item-label-small span {
        margin-bottom: 1px;
        padding: 2px 7px;
        font-size: 10px;
        line-height: 14px;
    }

    .product-item-big-card .product-item-label-text.product-item-label-small span,
    .product-item-label-text.product-item-label-big span,
    .product-item-scalable-card.hover .product-item-label-text.product-item-label-big span {
        margin-bottom: 1px;
        padding: 3px 12px;
        font-size: 14px;
        line-height: 16px;
    }

    .product-item-big-card .product-item-label-text.product-item-label-big span {
        padding: 3px 12px;
        font-size: 20px;
        line-height: 25px;
    }
}

/*RING*/
.product-item-label-ring {
    box-sizing: border-box;
    border-radius: 50%;
    font-weight: var(--ui-font-weight-bold);
}

.product-item-label-ring.product-item-label-small {
    width: 40px;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
}

.product-item-label-ring.product-item-label-big {
    width: 50px;
    height: 50px;
    font-size: 18px;
    line-height: 50px;
    display: none;
}

@media (max-width: 767px) {
    .product-item-label-ring.product-item-label-small,
    .product-item-scalable-card.hover .product-item-label-ring.product-item-label-small {
        width: 20px;
        height: 20px;
        font-size: 13px;
        line-height: 20px;
    }

    .product-item-big-card .product-item-label-ring.product-item-label-small,
    .product-item-label-ring.product-item-label-big,
    .product-item-scalable-card.hover .product-item-label-ring.product-item-label-big {
        width: 35px;
        height: 35px;
        font-size: 12px;
        line-height: 35px;
    }

    .product-item-big-card .product-item-label-ring.product-item-label-big {
        width: 70px;
        height: 70px;
        font-size: 24px;
        line-height: 70px;
    }
}

.product-item-label-top {
    top: -5px;
}

.product-item-label-center {
    left: 50%;
    transform: translateX(-50%);
}

.product-item-label-center > div {
    text-align: center;
}

.product-item-label-left {
    left: -5px;
}

.product-item-label-left > div {
    text-align: left;
}

.product-item-label-bottom {
    bottom: -5px;
}

.product-item-label-middle {
    top: 50%;
    transform: translateY(-50%);
}

.product-item-label-right {
    right: -5px;
}

.product-item-label-right > div {
    text-align: right;
}

.product-item-label-center.product-item-label-middle {
    transform: translateY(-50%) translateX(-50%);
}

/* Tabs */
.product-item-detail-tabs-container {
    min-height: 45px;
    border-bottom: 1px solid var(--text-darck-opacity);
    background: #fff;
}

.product-item-detail-tabs-list {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-item-detail-tabs-list:after {
    display: table;
    clear: both;
    content: "";
}

.product-item-detail-tab {
    float: left;
    min-height: 45px;
    min-width: 25%;
}

.product-item-detail-tab-link {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    padding: 14px 25px;
    height: 45px;
    color: var(--text-darck-opacity);
    vertical-align: middle;
    text-transform: uppercase;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    transition: all var(--transition-speed) ease;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    width: 100%;
    text-align: center;
    text-decoration: none;
}

.product-item-detail-tab-link:hover,
.product-item-detail-tab.active .product-item-detail-tab-link {
    color: var(--main-red);
    text-decoration: none;
}

.product-item-detail-tab-link:after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 0;
    background: var(--main-red);
    content: "";
    transition: all var(--transition-speed) ease;
}

.product-item-detail-tab-link:hover:after,
.product-item-detail-tab.active .product-item-detail-tab-link:after {
    height: 1px;
}

.product-item-detail-tab-link:active:after {
    height: 6px;
}

.product-item-detail-tab-content {
    padding: 60px 0;
}

.product-item-detail-properties-tab ,.product-item-detail-properties-group-list{
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.product-item-detail-properties-tab-item {
    display: flex;
    align-items: flex-start;
}

.product-item-detail-properties-tab-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: var(--text-darck-opacity);
    min-width: 31%;
}

.product-item-detail-properties-tab-value {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: var(--main-darck);
}

.documentation-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 16px;
}

.documentation-list-item {
    width: calc(33% - 16px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.documentation-list-item-name {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    color: var(--main-darck);
}

.documentation-list-item-download {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-offset: 0%;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
    color: var(--main-red);
    transition: all ease var(--transition-speed);
    display: flex;
    align-items: center;
    gap: 4px;
}

.documentation-list-item-download:hover {
    color: var(--main-red-hover);
    transition: all ease var(--transition-speed);
}

/*Tab fixed*/
.product-item-detail-tabs-container-fixed {
    position: fixed;
    top: -100px;
    right: 0;
    left: 0;
    z-index: 11;
    background-color: #fff;
    box-shadow: 0 4px 14px 0 rgba(32, 54, 74, .23);
    transition: top 350ms linear;
}

.product-item-detail-tabs-container-fixed {
    min-height: 45px;
    background: #fff;
}

.product-item-detail-tabs-container-fixed.active {
    top: 0;
    opacity: 1;
}

.product-item-detail-tabs-container-fixed .product-item-detail-tabs-list {
    margin: 0 auto;
    max-width: 1048px;
}

.product-item-detail-tabs-container-fixed .product-item-detail-tab {
    min-height: 45px;
}

.product-item-detail-tabs-container-fixed .product-item-detail-tab-link {
    padding: 10px 25px;
    height: 45px;
    line-height: 25px;
}

.bx-touch .product-item-detail-tabs-container-fixed {
    display: none !important;
}

/*Small Card*/
.product-item-detail-short-card-fixed {
    position: fixed;
    top: -85px;
    right: 0;
    left: 0;
    z-index: 11;
    box-sizing: border-box;
    padding: 7px 0 8px;
    height: 85px;
    background-color: #fff;
    box-shadow: 0 4px 14px 0 rgba(32, 54, 74, .23);
    transition: top 220ms linear;
}

.product-item-detail-short-card-fixed.active {
    top: 0;
    opacity: 1;
    display: none;
}

.product-item-detail-short-card-fixed.active + .product-item-detail-tabs-container-fixed.active {
    top: 85px;
    display: none;
}

.bx-touch .product-item-detail-short-card-fixed {
    display: none !important;
}

.product-item-detail-short-card-fixed .product-item-detail-short-card-content-container {
    margin: 0 auto;
    max-width: 1048px;
}

.product-item-detail-short-card-content-container table {
    min-width: 100%;
    border-collapse: collapse;
}

.product-item-detail-short-card-image {
    padding-right: 15px;
    width: 80px;
    vertical-align: middle;
    text-align: left;
}

.product-item-detail-short-card-image img {
    max-width: none;
    height: 65px;
}

.product-item-detail-short-title-container {
    max-width: 650px
}

.product-item-detail-short-title-text {
    display: block;
    color: #000;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    font-size: 16px;
    font-family: var(--ui-font-family-secondary, var(--ui-font-family-open-sans));
    font-weight: var(--ui-font-weight-regular, 400);
}

.product-item-detail-short-card-price {
    padding: 0 10px;
    vertical-align: middle;
    text-align: right;
}

.product-item-detail-short-card-btn {
    padding-left: 10px;
    min-width: 120px;
}

/*Properties */
.product-item-detail-tab-content {
    display: none;
}

.product-item-detail-tab-content.active {
    display: block;
    word-break: break-all;
}

.product-item-detail-tab-content h3,
.product-item-detail-tab-content h2,
.product-item-detail-tab-content h4,
.product-item-detail-tab-content h5,
.product-item-detail-tab-content h6 {
    margin-bottom: 28px;
    font-weight: 600;
    line-height: 100%;
    color: var(--main-darck);
    max-width: 85%;
}
.product-item-detail-tab-content .section_products{
    padding: 0;
    background-color: unset;
}

.no-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

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

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

#mobileHeaderTab {
    display: none;
}

@media (max-width: 1025px) {
    .product-item-detail-properties-group-title{
        font-size: 20px;
    }
    .product-leasing-block, .product-item-detail-pay-block {
        width: 50%;
    }

    .product-item-detail-tab-link:after {
        display: none;
    }

    .container-detail-element {
        padding: 0 0 60px;
    }

    .detail-element-header {
        align-items: flex-start;
        padding-bottom: 40px;
        flex-direction: column;
        gap: 20px;
    }

    .element-title {
        font-size: 28px;
    }

    .slider-head-info {
        gap: 40px 20px;
        padding-bottom: 40px;
        flex-wrap: wrap;
    }

    .slider-block, .description-block {
        width: calc(50% - 10px);
    }

    .buttons-price-block {
        width: 100%;
    }

    .product-item-detail-info-container {
        gap: 25px;
    }

    .model-block {
        gap: 12px;
    }

    .product-item-detail-properties {
        gap: 12px;
    }

    .product-item-detail-property {
        gap: 6px;
    }

    .guarantee-special-price-block {
        gap: 12px;
        margin-top: 7px;
    }

    .buttons-price-block {
        width: 100%;
        display: flex;
    }

    .product-item-detail-pay-block {
        padding: 24px;
        border-radius: 6px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .btn.buy-button {
        max-width: 241px;
    }

    .buttons-note {
        max-width: 305px;
    }

    .product-item-detail-tab {
        float: unset;
        min-height: 37px;
        min-width: 100%;
    }

    .product-item-detail-tab-link {
        position: unset;
        padding: 10px 0;
        height: 37px;
        text-align: left;
    }

    .product-item-detail-tabs-container {
        min-height: 0;
    }

    .product-item-detail-tabs-list {
        display: none;
    }

    .product-item-detail-tabs-list.active {
        display: block;
    }

    #mobileHeaderTab {
        cursor: pointer;
        padding: 10px 0;
        margin-bottom: 0;
        border-bottom: 1px solid var(--main-red);
        color: var(--main-red);
        font-size: 14px;
        font-weight: 400;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-transform: capitalize;
        transition: border-bottom-color 0.3s;
    }

    #mobileHeaderTab:hover {
        color: var(--main-red-hover);
    }

    #mobileHeaderTab .dropdown-arrow {
        fill: var(--main-red);
        transition: transform 0.3s;
    }

    #mobileHeaderTab.open .dropdown-arrow {
        transform: rotate(180deg);
    }

    .product-item-detail-tab-content {
        padding: 40px 0 0;
    }

    .product-item-detail-properties-tab-title {
        min-width: 50%;
        font-size: 14px;
    }

    .product-item-detail-properties-tab ,.product-item-detail-properties-group-list{
        gap: 12px;
    }

    .documentation-list-item {
        width: calc(50% - 8px);
    }

    .documentation-list-item-name {
        font-size: 20px;
    }

    .product-item-detail-slider-controls-image img {
        max-width: 63px;
        max-height: 60px;
    }
}

@media (max-width: 767px) {
    .product-item-detail-properties-group-title{
        font-size: 18px;
    }
    .product-leasing-block, .product-item-detail-pay-block {
        width: 100%;
    }

    .container-detail-element {
        padding: 0 0 40px;
    }

    .detail-element-header {
        gap: 28px;
    }

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

    .element-header-right-block {
        flex-wrap: wrap;
    }

    .article-block {
        width: 100%;
    }

    .slider-head-info {
        gap: 32px;
        padding-bottom: 40px;
    }

    .slider-block, .description-block {
        width: 100%;
    }

    .product-item-detail-slider-controls-image {
        width: 50px;
    }

    .product-item-detail-slider-controls-image {
        max-width: 100%;
    }

    .product-item-detail-slider-controls-block {
        padding: 12px 0 0;
    }

    .buttons-price-block {
        flex-direction: column;
    }

    .product-item-detail-pay-block {
        padding: 20px;
    }

    .product-item-detail-quantity-container-title {
        padding: 10px 12px;
        font-size: 12px;
    }

    .product-item-detail-price-current {
        font-size: 28px;
    }

    .main-button-container {
        margin-top: 12px;
    }

    .product-item-detail-btn-container {
        gap: 3px;
    }

    .btn.buy-button {
        font-size: 12px;
        max-width: 187px;
    }

    .product-leasing-top-block {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin: 0 0 8px;
        gap: 12px;
    }

    .product-item-detail-tab-content {
        padding: 32px 0 0;
    }

    .product-item-detail-properties-tab-title {
        min-width: 50%;
        font-size: 14px;
    }

    .product-item-detail-properties-tab ,.product-item-detail-properties-group-list{
        gap: 12px;
    }

    .documentation-list-item {
        width: calc(50% - 8px);
    }

    .documentation-list-item-name {
        font-size: 20px;
    }

    .product-item-detail-tab-content h3,
    .product-item-detail-tab-content h2,
    .product-item-detail-tab-content h4,
    .product-item-detail-tab-content h5,
    .product-item-detail-tab-content h6 {
        margin-bottom: 20px;
    }

    .product-item-detail-properties-tab ,.product-item-detail-properties-group-list{
        gap: 20px;
    }

    .product-item-detail-properties-tab-item {
        flex-direction: column;
        gap: 12px;
    }

    .documentation-list {
        gap: 32px;
    }

    .documentation-list-item {
        width: 100%;
    }

    .documentation-list-item-name {
        font-size: 18px;
    }
}

/* Стиль для индикатора загрузки */
.is-loading .submit-text {
    visibility: hidden;
}

.is-loading .loader {
    display: block;
}

.loader {
    display: none;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #ffffff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Стили для полей ввода, чтобы они были чистыми */
.custom-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--main-red);
    border-radius: 0.5rem;
    color: var(--main-darck);
    transition: all 0.15s;
}

.custom-input:focus {
    outline: none;
    border-color: var(--main-red);
    box-shadow: 0 0 0 1px #FF0000;
}

/* Стиль для чекбокса согласия */
.custom-consent-checkbox:checked {
    background-color: var(--main-red);
    border-color: var(--main-red);
}

.custom-consent-checkbox:focus {
    ring-color: var(--main-red);
}

.product-item-detail-properties-group{
    padding-bottom: 34px;
}

.product-item-detail-properties-group-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -0.02em;
    padding-bottom: 28px;
    color: var(--main-darck);
}


/* End */


/* Start:/bitrix/components/bitrix/sale.products.gift/templates/.default/style.css?17644392373791*/
@media (min-width: 1200px){
	/*lg*/
	/*6*/
	.product-item-list-col-6   > .col-xs-12 > .row > .col-md-2:nth-child(6n+1),
	.product-item-list-col-1-6 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-6-1 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-1-6 > .col-sm-6  > .row > .col-md-4:nth-child(3n+1),
	.product-item-list-col-6-1 > .col-sm-6  > .row > .col-md-4:nth-child(3n+1),
		/*4*/
	.product-item-list-col-4   > .col-xs-12 > .row > .col-md-3:nth-child(4n+1),
	.product-item-list-col-1-4 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-4-1 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
		/*3*/
	.product-item-list-col-3   > .col-xs-12 > .row > .col-sm-4:nth-child(3n+1),
		/*2*/
	.product-item-list-col-2   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
		/*1*/
	.product-item-list-col-1   > .col-xs-12 > .row > .col-xs-12:nth-child(1n){clear: both}
}
@media (min-width: 992px) and (max-width:1199px){
	/*md*/
	/*6*/
	.product-item-list-col-6   > .col-xs-12 > .row > .col-md-2:nth-child(6n+1),
	.product-item-list-col-1-6 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-6-1 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-1-6 > .col-sm-6 > .row > .col-md-4:nth-child(3n+1),
	.product-item-list-col-6-1 > .col-sm-6 > .row > .col-md-4:nth-child(3n+1),
		/*4*/
	.product-item-list-col-4   > .col-xs-12 > .row > .col-md-3:nth-child(4n+1),
	.product-item-list-col-1-4 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-4-1 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
		/*3*/
	.product-item-list-col-3   > .col-xs-12 > .row > .col-sm-4:nth-child(3n+1),
		/*2*/
	.product-item-list-col-2   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
		/*1*/
	.product-item-list-col-1   > .col-xs-12 > .row > .col-xs-12:nth-child(1n){clear: both}
}
@media (min-width: 768px) and (max-width: 991px){
	/*sm*/
	/*6*/
	.product-item-list-col-6   > .col-xs-12 > .row > .col-sm-4:nth-child(3n+1),
	.product-item-list-col-1-6 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-6-1 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-1-6 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-6-1 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
		/*4*/
	.product-item-list-col-4   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-1-4 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-4-1 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-1-4 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-4-1 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
		/*3*/
	.product-item-list-col-3   > .col-xs-12 > .row > .col-sm-4:nth-child(3n+1),
		/*2*/
	.product-item-list-col-2   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
		/*1*/
	.product-item-list-col-1   > .col-xs-12 > .row > .col-xs-12:nth-child(1n){clear: both}
}
@media (max-width: 767px){
	/*xs*/
	/*6*/
	.product-item-list-col-6   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-1-6 > .col-sm-6 > .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-6-1 > .col-sm-6 > .row > .col-xs-6:nth-child(2n+1),
		/*4*/
	.product-item-list-col-4   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-1-4 > .col-sm-6 > .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-4-1 > .col-sm-6 > .row > .col-xs-6:nth-child(2n+1),
		/*3*/
	.product-item-list-col-3   > .col-xs-12 > .row > .col-sm-4:nth-child(3n+1),
		/*2*/
	.product-item-list-col-2   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
		/*1*/
	.product-item-list-col-1   > .col-xs-12 > .row > .col-xs-12:nth-child(1n){clear: both}
}

.catalog-products-viewed-header{
	font-size:14px;
	font-weight: bold;
	text-align: left;
	margin:5px 0;
	padding:5px 15px;
	border-bottom: 2px solid #d9dee6;
	color: #000;
}
/* End */


/* Start:/local/templates/аrbq/components/bitrix/catalog.item/.default/style.css?17644392644111*/
.product-card {
    background-color: transparent;
    width: 100%;
    overflow: hidden;
    text-align: left;
    max-width: 260px;
    min-width: 260px;
    border-radius: 6px;
    position: relative;
}

.image-container {
    position: relative;
    padding-bottom: 65%;
    background-color: var(--text-white);
    box-shadow: 0px 7px 20px 0px var(--drop-shadow);
    overflow: hidden;
    border-radius: 6px;
    touch-action: pan-y;
}

/* The <a> tag wrapper doesn't affect the slider logic, but is included in HTML structure */
.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 180px;
    object-fit: cover;
    object-position: center;
    transition: opacity var(--transition-speed) ease-in-out;
    opacity: 0;
}

.product-image.active {
    opacity: 1;
}

.favorite-wrapper {
    position: absolute;
    top: 0;
    left: 10px;
    z-index: 1;
    width: 40px;
    height: 41px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    background-color: var(--text-white);
    box-shadow: 0 4px 10px var(--drop-shadow);
    transition: all ease var(--transition-speed);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.favorite-icon {
    width: 20px;
    height: 20px;
}

.favorite-icon path {
    fill: none;
    stroke: var(--main-darck);
    stroke-width: 1.5px;
    transition: all var(--transition-speed) ease;
}

.favorite-wrapper.active svg path {
    fill: var(--main-red);
    stroke: var(--main-red);
}

.favorite-wrapper:hover svg path {
    fill: var(--main-red);
    stroke: var(--main-red);
}

.favorite-wrapper svg path {
    transition: all var(--transition-speed) ease;
}

.product-content {
    padding: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.current-price {
    color: var(--main-red);
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    white-space: nowrap;
}

.old-price {
    font-weight: 400;
    font-size: 10px;
    line-height: 100%;
    text-decoration: line-through;
    color: var(--main-darck);
    white-space: nowrap;
}

.discount-badge {
    color: var(--main-red);
    font-weight: 600;
    font-size: 10px;
    line-height: 100%;
    white-space: nowrap;
}

.product-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: var(--main-darck);
    transition: all ease var(--transition-speed);
    cursor: pointer;
}

.product-title:hover, .product-title a:hover {
    color: var(--main-darck-hover);
    transition: all ease var(--transition-speed);
}

.slider-controls {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    padding: 6px 0;
    z-index: 1;
}

@media (max-width: 767px) {
    .slider-controls .line {
        cursor: pointer;
    }
}

.line {
    height: 4px;
    width: 30px;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.5);
    transition: background-color var(--transition-speed) ease-in-out;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.line.active {
    background-color: var(--main-red);
}

.progress-bar {
    height: 100%;
    background-color: #FF0000;
    width: 0;
    transition: width 0s linear;
}

/* --- MEDIA QUERIES --- */
@media (max-width: 1025px) {
    .current-price {
        font-size: 20px;
    }

    .product-title {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .slider-controls {
        bottom: 10px;
    }

    .line {
        height: 3px;
        width: 30px;
    }

    .favorite-wrapper {
        left: 16px;
    }

    .product-content {
        padding: 20px 0;
    }

    .current-price {
        font-size: 18px;
    }
}
/* End */


/* Start:/bitrix/components/bitrix/sale.products.gift/templates/.default/themes/green/style.css?1764439237851*/
/* catalog.section */

/*
#63aa28
#6fb32d
#7ab748
#a8d95b
*/

/* Slider */
.bx-green .product-item-image-slider-progress-bar { background-color: #5b9f0b;}
.bx-green .product-item-image-slider-control:hover{ background-color: rgba(91,159,11,.8);}
.bx-green .product-item-image-slider-control.active,
.bx-green .product-item-image-slider-control:hover{ background-color: #5b9f0b;}

/* SCU */
.bx-green .product-item-scu-item-text-block:hover,
.bx-green .product-item-scu-item-color-block:hover,
.bx-green .product-item-scu-item-text-container.selected .product-item-scu-item-text-block,
.bx-green .product-item-scu-item-color-container.selected .product-item-scu-item-color-block{ outline-color: #63aa28;}

/* Amount */
.bx-green .product-item-amount-field:focus{border-color: #63aa28;}


.bx-green .catalog-products-viewed-header{border-color:#63aa28;}
/* End */


/* Start:/bitrix/components/bitrix/sale.gift.main.products/templates/.default/style.css?1764439235663*/
.bx_item_list_title {
    font-weight: bold;
    color: #000;
    background: #ebf4f8;
    vertical-align: middle;
    height: 38px;
    text-align: center;
    line-height: 38px;
    font-size: 14px;
}
.bx_sale_gift_main_products.bx_wood .bx_item_list_title{background:#ebf4f8;}
.bx_sale_gift_main_products.bx_red .bx_item_list_title{background:#FBF1F0}
.bx_sale_gift_main_products.bx_green .bx_item_list_title{background:#F2FBEA}
.bx_sale_gift_main_products.bx_blue .bx_item_list_title{background:#ebf4f8}
.bx_sale_gift_main_products.bx_black .bx_item_list_title{background:#f1f4f7;}
.bx_sale_gift_main_products.bx_yellow .bx_item_list_title{background:#FBF7DB}
/* End */


/* Start:/local/templates/аrbq/components/bitrix/news.list/product_leasing_option/style.css?176443926412172*/
/* --- User Provided Styles START --- */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.leasing-option-container {
    padding: 60px 0 90px;
}

.leasing-option-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 125%;
    color: var(--main-darck);
    padding-bottom: 40px;
}

#leasing-options {
    padding-bottom: 60px;
    display: flex; /* Kept to maintain layout */
    flex-wrap: wrap; /* Kept to maintain layout */
    gap: 20px; /* Adjusted gap for better spacing */
    margin-bottom: 0; /* Ensures consistent margin below the tabs container */
}

.leasing-options-item {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    text-align: center;
    padding: 14px 22px;
    color: var(--text-darck-opacity);
    border-bottom: 1px solid var(--text-darck-opacity);
    transition: all ease var(--transition-speed);
    cursor: pointer;
    white-space: nowrap;
}

.leasing-options-item:hover, .leasing-options-item.active {
    color: var(--main-red);
    border-bottom: 1px solid var(--main-red);
    transition: all ease var(--transition-speed);
}

.calc-container {
    display: flex;
    gap: 40px;
}
.range-container{
    width: calc(60% - 20px);
}
.range-container, .result-container {
    background-color: var(--text-white);
    border-radius: 6px;
    box-shadow: 0px 7px 20px 0px var(--drop-shadow);
    padding: 32px;
    position: relative;
    overflow: hidden; /* Added for the overlay effect */
}

.result-container {
    width: calc(40% - 20px);
    border: 1px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(330.67deg, rgba(255, 0, 0, 0.4) 2.67%, rgba(255, 0, 0, 0) 41.41%) border-box,
    linear-gradient(143.85deg, rgba(255, 0, 0, 0.2) 9.87%, rgba(255, 0, 0, 0) 29.02%) border-box;
    background-clip: padding-box, border-box, border-box;
}

.range-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 125%;
    color: var(--main-darck);
    padding-bottom: 40px;
}

.range-block {
    padding-bottom: 34px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.range-block-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: var(--main-darck);
}

.range-block-value {
    font-weight: 500;
    font-size: 24px;
    line-height: 125%;
    text-align: right;
    color: var(--main-darck);
}

.range-block-labels {
    display: flex;
    justify-content: space-between;
    font-weight: 300;
    font-size: 14px;
    line-height: 100%;
    color: var(--main-darck);
}


/* Slider Styling (UPDATED for dynamic fill) */
.range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    outline: none;
    opacity: 1; /* Keep full opacity for visibility */
    -webkit-transition: background var(--transition-speed);
    transition: background var(--transition-speed);
    border-radius: 6px;
    cursor: pointer;

    /* Dynamic background for fill: Linear gradient from main-red to track color */
    background: linear-gradient(to right, var(--slider-fill-color) 0%, var(--slider-fill-color) var(--slider-percent), var(--slider-track-color) var(--slider-percent), var(--slider-track-color) 100%);
}

/* Webkit Thumb */
.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 9px;
    height: 9px;
    background: var(--text-white);
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 6px var(--main-red);
    transition: box-shadow var(--transition-speed);
}

.range-slider:active::-webkit-slider-thumb {
    box-shadow: 0 0 0 8px var(--main-red-hover);
}

/* Moz Thumb */
.range-slider::-moz-range-thumb {
    width: 9px;
    height: 9px;
    background: var(--text-white);
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 6px var(--main-red);
    transition: box-shadow var(--transition-speed);
}

.range-slider:active::-moz-range-thumb {
    box-shadow: 0 0 0 8px var(--main-red-hover);
}

/* Moz Track (to ensure consistent track style) */
.range-slider::-moz-range-track {
    background: transparent; /* Use the main element background for track */
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.result-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 125%;
    color: var(--main-darck);
    padding-bottom: 16px;
}

.result-monthly-payment {
    font-weight: 700;
    font-size: 32px;
    line-height: 125%;
    color: var(--main-red);
    padding-top: 31px;
}

.result-overpayment {
    font-weight: 500;
    font-size: 24px;
    line-height: 125%;
    color: var(--main-darck);
    padding-top: 20px;
}

.result-block-item {
    padding-top: 32px;
}

.request-form-button {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    border-radius: 6px;
    padding: 10px 20px;
    background: var(--main-red);
    color: var(--text-white);
    width: 100%;
    transition: all ease var(--transition-speed);
    margin: 40px 0 20px;
}

.request-form-button:hover {
    background: var(--main-red-hover);
    transition: all ease var(--transition-speed);
}

.result-text-note {
    font-weight: 300;
    font-size: 14px;
    line-height: 130%;
    color: var(--main-darck);
}

.fade-in {
    animation: fadeIn var(--transition-speed) ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Styles - keeping previous functional styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed) ease-in-out, visibility var(--transition-speed) ease-in-out;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--main-darck-hover);
    color: var(--text-white);
    padding: 40px;
    border-radius: 6px;
    max-width: 50%;
    width: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: scale(0.95);
    transition: transform var(--transition-speed) ease-in-out;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.open .modal-content {
    transform: scale(1);
}

/* Modal Tabs (Always hidden, replaced by select for consistency) */
#modal-leasing-options {
    display: none !important;
}
#modal-monthly-payment{
    color: var(--main-red);
}
/* Reusable Select Styling */
.custom-select-wrapper select {
    font-size: 16px;
    color: var(--main-red);
    border: none;
    border-bottom: 2px solid var(--main-red);
    border-radius: 0;
    padding: 5px 0;
    padding-right: 25px;
    appearance: none;
    background-image: var(--arrow-down);
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-color: transparent;
    cursor: pointer;
    width: 100%;
    outline: none;
    font-weight: 500;

    /* default */
    --arrow-down: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23FF0000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    --arrow-up:   url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 6.5L6 1.5L11 6.5' stroke='%23FF0000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Specific style for modal select */
#modal-leasing-select {
    background-color: transparent !important; /* Ensure background is transparent inside the dark modal */
    border-color: #ff0000 !important; /* Ensure the line is red */
    color: #ff0000 !important; /* Ensure text is red */
    width: 100%;
    margin-bottom: 20px;
}

/* Mobile specific styles (Updated: max-width: 1024px instead of 1025px) */
.mobile-select-wrapper {
    display: none;
    padding-bottom: 30px;
}

@media (max-width: 1025px) {
    /* Hiding desktop tabs and showing mobile select for main calculator */
    #leasing-options {
        display: none !important;
    }

    .mobile-select-wrapper {
        display: block !important;
    }

    /* Apply select styling to main calculator mobile select */
    .mobile-select-wrapper select {
        font-size: 16px;
        color: var(--main-red);
        border: none;
        border-bottom: 2px solid var(--main-red);
        border-radius: 0;
        padding: 5px 0;
        padding-right: 25px;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23FF0000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
        background-repeat: no-repeat;
        background-position: right 0 center;
        background-color: transparent;
        cursor: pointer;
        width: 100%;
        font-weight: 500;
        outline: none;
    }

    .mobile-select-wrapper select option {
        color: var(--main-darck);
    }

    .leasing-option-container {
        padding: 40px 0 60px;
    }

    .leasing-option-title {
        font-size: 28px;
        padding-bottom: 30px;
    }

    #leasing-options {
        padding-bottom: 30px;
    }

    .calc-container {
        gap: 20px;
        flex-direction: row; /* Keeping row, but allowing wrap */
        flex-wrap: wrap;
    }

    .range-container, .result-container {
        padding: 20px;
        box-shadow: none; /* Removing shadow for mobile look */
    }

    .range-container {
        width: calc(60% - 10px);
    }

    .result-container {
        width: calc(40% - 10px);
        order: 2; /* Positioning the result box below the calculator on wrap */
        background: #fff;
        border: none;
    }

    /* For smaller phones, force full width */
    @media (max-width: 600px) {
        .range-container, .result-container {
            width: 100%;
        }

        .modal-content {
            max-width: 95%;
            padding: 20px;
        }
    }

    .range-block {
        padding-bottom: 25px;
        gap: 16px;
    }

    .range-title {
        font-size: 28px;
    }

    .range-block-title {
        font-size: 14px;
    }

    .range-block-value {
        font-size: 20px;
    }

    .range-block-labels {
        font-size: 12px;
    }

    .text-overlay {
        width: max-content;
    }

    .result-title {
        font-size: 20px;
    }

    .result-block-item {
        padding-top: 12px;
    }

    .result-monthly-payment {
        font-size: 28px;
        padding-top: 20px;
    }

    .result-overpayment {
        font-size: 20px;
    }

    .result-text-note {
        font-size: 12px;
    }
}

/* --- User Provided Styles END --- */

@media (max-width: 767px) {
    .leasing-option-container {
        padding: 40px 0;
    }

    .leasing-option-title, .mobile-select-wrapper {
        padding-bottom: 32px;
    }

    .range-container, .result-container {
        box-shadow: 0px 7px 20px 0px var(--drop-shadow);
    }

    .range-title {
        padding-bottom: 35px;
    }

    .range-block-title {
        font-size: 12px;
    }

    .range-block-value {
        font-size: 18px;
        white-space: nowrap;
    }

    .range-block-labels {
        font-size: 10px;
    }

    .range-block {
        padding-bottom: 25px;
        gap: 12px;
    }

    .result-title {
        font-size: 18px;
    }

    .result-monthly-payment {
        padding-top: 24px;
    }

    .request-form-button {
        margin: 32px 0 20px;
    }

    .result-text-note {
        font-size: 10px;
    }

}
/* End */


/* Start:/local/templates/аrbq/components/bitrix/catalog/catalog_arbq/bitrix/catalog.element/.default/themes/green/style.css?17644392641127*/
/* catalog.section */

/*
#63aa28
#6fb32d
#7ab748
#a8d95b
*/

/* Slider */
.bx-green .product-item-image-slider-progress-bar { background-color: var(--main-red); }

.bx-green .product-item-image-slider-control:hover { background-color: var(--main-red); }

.bx-green .product-item-image-slider-control.active,
.bx-green .product-item-image-slider-control:hover { background-color: var(--main-red); }

.bx-green .product-item-selected-scu,
.bx-green .product-item-detail-slider-controls-image:hover,
.bx-green .product-item-detail-slider-controls-image.active { outline-color: var(--main-red); }

/* SCU */
.bx-green .product-item-scu-item-text-block:hover,
.bx-green .product-item-scu-item-color-block:hover,
.bx-green .product-item-scu-item-text-container.selected .product-item-scu-item-text-block,
.bx-green .product-item-scu-item-color-container.selected .product-item-scu-item-color-block { outline-color: var(--main-red); }

/* Amount */
.bx-green .product-item-amount-field:focus { border-color: var(--main-red); }

/*Proress Bar*/
.bx-green .product-item-detail-slider-progress-bar { background-color: var(--main-red); }
/* End */


/* Start:/bitrix/components/bitrix/catalog.store.amount/templates/.default/style.css?17644392332802*/
div.catalog-detail { position: static; border: 1px solid; zoom:1;}
div.catalog-detail-hover div.catalog-admin-links  { display: block; }
div.catalog-detail-hover { position: relative;}

div.catalog-detail-line
{
    font-size:1px;
    height:1px;
    line-height:1px;
    margin:12px 0;
    overflow:hidden;
    padding:0;
    background: url(/bitrix/components/bitrix/catalog.store.amount/templates/.default/images/title-line.gif) no-repeat;
}
div.catalog-detail-properties { clear: both; padding: 1em 0 0;  overflow: hidden; width: 80%; }
div.catalog-detail-property { margin: 0 0 1em; border-bottom:1px dotted; float: left; width: 100%;}
div.catalog-detail-property b { float: right; position: relative; padding-left: 3px;  font-weight:normal; }
div.catalog-detail-property grey { color:grey;  font-weight:lighter; }
div.catalog-detail-property span { float: left; position: relative; padding-right: 3px; zoom: 1;}
div.catalog-detail-properties-title { font-size: 1em; font-weight: bold; margin: 2em 0 1em; }


.bx_storege {}
.bx_storege h4{
    margin-bottom: 0;
}
.bx_storege hr{
    background: #e5e5e5;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U1ZTVlNSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2U1ZTVlNSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(left, #e5e5e5 0%, #e5e5e5 50%, #ffffff 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,#e5e5e5), color-stop(50%,#e5e5e5), color-stop(100%,#ffffff));
    background: -webkit-linear-gradient(left, #e5e5e5 0%,#e5e5e5 50%,#ffffff 100%);
    background: -o-linear-gradient(left, #e5e5e5 0%,#e5e5e5 50%,#ffffff 100%);
    background: -ms-linear-gradient(left, #e5e5e5 0%,#e5e5e5 50%,#ffffff 100%);
    background: linear-gradient(to right, #e5e5e5 0%,#e5e5e5 50%,#ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5e5e5', endColorstr='#ffffff',GradientType=1 );
    border: none;
    height: 1px;
}
.bx_storege ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.bx_storege ul li{
    padding: 5px 0 20px;
    font-size: 12px;
    line-height: 17px;
}
.bx_storege ul li a{
    text-decoration: none;
    color: #2a65ae;
}
.bx_storege ul li a:hover{
    text-decoration: underline;
}
/* End */


/* Start:/local/templates/аrbq/components/bitrix/catalog.section/section_elements_slider_buttons/style.css?17644392646159*/
@media (min-width: 1200px) {
    /*lg*/
    /*6*/
    .product-item-list-col-6 > .col-xs-12 > .row > .col-md-2:nth-child(6n+1),
    .product-item-list-col-1-6 > .col-sm-6:nth-child(2n+1),
    .product-item-list-col-6-1 > .col-sm-6:nth-child(2n+1),
    .product-item-list-col-1-6 > .col-sm-6 > .row > .col-md-4:nth-child(3n+1),
    .product-item-list-col-6-1 > .col-sm-6 > .row > .col-md-4:nth-child(3n+1),
        /*4*/
    .product-item-list-col-4 > .col-xs-12 > .row > .col-md-3:nth-child(4n+1),
    .product-item-list-col-1-4 > .col-sm-6 > .row > .col-xs-6:nth-child(2n+1),
    .product-item-list-col-4-1 > .col-sm-6 > .row > .col-xs-6:nth-child(2n+1),
        /*3*/
    .product-item-list-col-3 > .col-xs-12 > .row > .col-sm-4:nth-child(3n+1),
        /*2*/
    .product-item-list-col-2 > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
        /*1*/
    .product-item-list-col-1 > .col-xs-12 > .row > .col-xs-12:nth-child(1n) {
        clear: both
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    /*md*/
    /*6*/
    .product-item-list-col-6 > .col-xs-12 > .row > .col-md-2:nth-child(6n+1),
    .product-item-list-col-1-6 > .col-sm-6:nth-child(2n+1),
    .product-item-list-col-6-1 > .col-sm-6:nth-child(2n+1),
    .product-item-list-col-1-6 > .col-sm-6 > .row > .col-md-4:nth-child(3n+1),
    .product-item-list-col-6-1 > .col-sm-6 > .row > .col-md-4:nth-child(3n+1),
        /*4*/
    .product-item-list-col-4 > .col-xs-12 > .row > .col-md-3:nth-child(4n+1),
    .product-item-list-col-1-4 > .col-sm-6 > .row > .col-xs-6:nth-child(2n+1),
    .product-item-list-col-4-1 > .col-sm-6 > .row > .col-xs-6:nth-child(2n+1),
        /*3*/
    .product-item-list-col-3 > .col-xs-12 > .row > .col-sm-4:nth-child(3n+1),
        /*2*/
    .product-item-list-col-2 > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
        /*1*/
    .product-item-list-col-1 > .col-xs-12 > .row > .col-xs-12:nth-child(1n) {
        clear: both
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    /*sm*/
    /*6*/
    .product-item-list-col-6 > .col-xs-12 > .row > .col-sm-4:nth-child(3n+1),
    .product-item-list-col-1-6 > .col-sm-6:nth-child(2n+1),
    .product-item-list-col-6-1 > .col-sm-6:nth-child(2n+1),
    .product-item-list-col-1-6 > .col-sm-6 > .row > .col-xs-6:nth-child(2n+1),
    .product-item-list-col-6-1 > .col-sm-6 > .row > .col-xs-6:nth-child(2n+1),
        /*4*/
    .product-item-list-col-4 > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
    .product-item-list-col-1-4 > .col-sm-6:nth-child(2n+1),
    .product-item-list-col-4-1 > .col-sm-6:nth-child(2n+1),
    .product-item-list-col-1-4 > .col-sm-6 > .row > .col-xs-6:nth-child(2n+1),
    .product-item-list-col-4-1 > .col-sm-6 > .row > .col-xs-6:nth-child(2n+1),
        /*3*/
    .product-item-list-col-3 > .col-xs-12 > .row > .col-sm-4:nth-child(3n+1),
        /*2*/
    .product-item-list-col-2 > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
        /*1*/
    .product-item-list-col-1 > .col-xs-12 > .row > .col-xs-12:nth-child(1n) {
        clear: both
    }
}

@media (max-width: 767px) {
    /*xs*/
    /*6*/
    .product-item-list-col-6 > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
    .product-item-list-col-1-6 > .col-sm-6 > .row > .col-xs-6:nth-child(2n+1),
    .product-item-list-col-6-1 > .col-sm-6 > .row > .col-xs-6:nth-child(2n+1),
        /*4*/
    .product-item-list-col-4 > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
    .product-item-list-col-1-4 > .col-sm-6 > .row > .col-xs-6:nth-child(2n+1),
    .product-item-list-col-4-1 > .col-sm-6 > .row > .col-xs-6:nth-child(2n+1),
        /*3*/
    .product-item-list-col-3 > .col-xs-12 > .row > .col-sm-4:nth-child(3n+1),
        /*2*/
    .product-item-list-col-2 > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
        /*1*/
    .product-item-list-col-1 > .col-xs-12 > .row > .col-xs-12:nth-child(1n) {
        clear: both
    }
}

.section_products {
    padding: 60px 0 90px;
    background-color: var(--section-color);
}

.block-title-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 50px;
}

.block-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    color: var(--main-darck);
}

.block-title-container-view-more {
    display: flex;
    align-items: center;
    gap: 4px;
    background-color: var(--light-gray-bg);
    padding: 15px 20px;
    border-radius: 16px;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    transition: all ease var(--transition-speed);
}

.block-title-container-view-more:hover {
    background-color: var(--text-darck-opacity);
    transition: all ease var(--transition-speed);
}

.block-title-container-view-more span {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: var(--main-darck);
}

.section-nav-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.section-nav-button {
    background-color: var(--text-white);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0px 6.22px 17.78px 0px var(--drop-shadow);
    transition: all ease var(--transition-speed);
}

.section-nav-button:hover {
    background-color: var(--section-color);
    transition: all ease var(--transition-speed);
}

@media (max-width: 1025px) {
    .section_products {
        padding: 40px 0 60px;
    }

    .block-title {
        font-size: 28px;
    }

    .block-title-container {
        padding-bottom: 40px;
    }
}

@media (max-width: 1025px) {
    .section_products {
        padding: 40px 0;
    }

    .block-title {
        font-size: 28px;
    }

    .section-nav-button {
        width: 35px;
        height: 35px;
    }

    .section_products .section-nav-buttons {
        display: none;
    }
}

@media (max-width: 767px) {
    .block-title-container {
        padding-bottom: 32px;
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .section-nav-button {
        width: 30px;
        height: 30px;
    }

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


}
/* End */


/* Start:/local/templates/аrbq/components/bitrix/catalog.section/section_elements_slider_buttons/themes/green/style.css?1764439264843*/
/* catalog.section */

/*
#63aa28
#6fb32d
#7ab748
#a8d95b
*/

/* Slider */
.bx-green .product-item-image-slider-progress-bar { background-color: #5b9f0b;}
.bx-green .product-item-image-slider-control:hover{ background-color: rgba(91,159,11,.8);}
.bx-green .product-item-image-slider-control.active,
.bx-green .product-item-image-slider-control:hover{ background-color: #5b9f0b;}

/* SCU */
.bx-green .product-item-scu-item-text-block:hover,
.bx-green .product-item-scu-item-color-block:hover,
.bx-green .product-item-scu-item-text-container.selected .product-item-scu-item-text-block,
.bx-green .product-item-scu-item-color-container.selected .product-item-scu-item-color-block{ outline-color: #63aa28;}

/* Amount */
.bx-green .product-item-amount-field:focus{border-color: #63aa28;}


.bx-green .catalog-section-header{border-color:#63aa28;}
/* End */


/* Start:/local/templates/аrbq/components/bitrix/catalog/catalog_arbq/bitrix/catalog.products.viewed/.default/style.css?17644392643828*/
@media (min-width: 1200px){
	/*lg*/
	/*6*/
	.product-item-list-col-6   > .col-xs-12 > .row > .col-md-2:nth-child(6n+1),
	.product-item-list-col-1-6 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-6-1 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-1-6 > .col-sm-6  > .row > .col-md-4:nth-child(3n+1),
	.product-item-list-col-6-1 > .col-sm-6  > .row > .col-md-4:nth-child(3n+1),
		/*4*/
	.product-item-list-col-4   > .col-xs-12 > .row > .col-md-3:nth-child(4n+1),
	.product-item-list-col-1-4 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-4-1 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
		/*3*/
	.product-item-list-col-3   > .col-xs-12 > .row > .col-sm-4:nth-child(3n+1),
		/*2*/
	.product-item-list-col-2   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
		/*1*/
	.product-item-list-col-1   > .col-xs-12 > .row > .col-xs-12:nth-child(1n){clear: both}
}
@media (min-width: 992px) and (max-width:1199px){
	/*md*/
	/*6*/
	.product-item-list-col-6   > .col-xs-12 > .row > .col-md-2:nth-child(6n+1),
	.product-item-list-col-1-6 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-6-1 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-1-6 > .col-sm-6 > .row > .col-md-4:nth-child(3n+1),
	.product-item-list-col-6-1 > .col-sm-6 > .row > .col-md-4:nth-child(3n+1),
		/*4*/
	.product-item-list-col-4   > .col-xs-12 > .row > .col-md-3:nth-child(4n+1),
	.product-item-list-col-1-4 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-4-1 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
		/*3*/
	.product-item-list-col-3   > .col-xs-12 > .row > .col-sm-4:nth-child(3n+1),
		/*2*/
	.product-item-list-col-2   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
		/*1*/
	.product-item-list-col-1   > .col-xs-12 > .row > .col-xs-12:nth-child(1n){clear: both}
}
@media (min-width: 768px) and (max-width: 991px){
	/*sm*/
	/*6*/
	.product-item-list-col-6   > .col-xs-12 > .row > .col-sm-4:nth-child(3n+1),
	.product-item-list-col-1-6 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-6-1 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-1-6 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-6-1 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
		/*4*/
	.product-item-list-col-4   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-1-4 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-4-1 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-1-4 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-4-1 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
		/*3*/
	.product-item-list-col-3   > .col-xs-12 > .row > .col-sm-4:nth-child(3n+1),
		/*2*/
	.product-item-list-col-2   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
		/*1*/
	.product-item-list-col-1   > .col-xs-12 > .row > .col-xs-12:nth-child(1n){clear: both}
}
@media (max-width: 767px){
	/*xs*/
	/*6*/
	.product-item-list-col-6   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-1-6 > .col-sm-6 > .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-6-1 > .col-sm-6 > .row > .col-xs-6:nth-child(2n+1),
		/*4*/
	.product-item-list-col-4   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-1-4 > .col-sm-6 > .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-4-1 > .col-sm-6 > .row > .col-xs-6:nth-child(2n+1),
		/*3*/
	.product-item-list-col-3   > .col-xs-12 > .row > .col-sm-4:nth-child(3n+1),
		/*2*/
	.product-item-list-col-2   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
		/*1*/
	.product-item-list-col-1   > .col-xs-12 > .row > .col-xs-12:nth-child(1n){clear: both}
}

.catalog-products-viewed-header{
	font-size:14px;
	font-weight: bold;
	text-align: left;
	margin:5px 0;
	padding:5px 15px;
	border-bottom: 2px solid #d9dee6;
	color: #000;
}

.row::before {
	display: initial;
}
/* End */


/* Start:/local/templates/аrbq/components/bitrix/catalog/catalog_arbq/bitrix/catalog.products.viewed/.default/themes/green/style.css?1764439264851*/
/* catalog.section */

/*
#63aa28
#6fb32d
#7ab748
#a8d95b
*/

/* Slider */
.bx-green .product-item-image-slider-progress-bar { background-color: #5b9f0b;}
.bx-green .product-item-image-slider-control:hover{ background-color: rgba(91,159,11,.8);}
.bx-green .product-item-image-slider-control.active,
.bx-green .product-item-image-slider-control:hover{ background-color: #5b9f0b;}

/* SCU */
.bx-green .product-item-scu-item-text-block:hover,
.bx-green .product-item-scu-item-color-block:hover,
.bx-green .product-item-scu-item-text-container.selected .product-item-scu-item-text-block,
.bx-green .product-item-scu-item-color-container.selected .product-item-scu-item-color-block{ outline-color: #63aa28;}

/* Amount */
.bx-green .product-item-amount-field:focus{border-color: #63aa28;}


.bx-green .catalog-products-viewed-header{border-color:#63aa28;}
/* End */


/* Start:/local/templates/аrbq/components/bitrix/news.list/other_news/style.css?17644392643093*/
.news-home-container {
	padding: 60px 0 90px;
}
.header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 60px;
}

.main-heading {
	font-weight: 700;
	font-size: 32px;
	line-height: 100%;
	color: var(--main-darck);
}

.more-link {
	color: var(--text-darck-opacity);
	font-weight: 400;
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	padding: 10px 20px;
	border-radius: 16px;
	background-color: var(--light-gray-bg);
	transition: all ease var(--transition-speed);
}
.more-link:hover {
	color: var(--main-darck-hover);
	background-color: var(--section-color);
	transition: all ease var(--transition-speed);
}
.link-icon {
	height: 1rem;
	width: 1rem;
}
.news-home-slider-item {
	display: flex;
	flex-direction: column;
	gap: 28px;
	padding-bottom: 10px;
	transition: all ease var(--transition-speed);
}

.news-home-slider-item:hover {
	transition: all ease var(--transition-speed);
}

.news-home-slider-item-picture{
	max-width: 360px;
	max-height: 200px;
	min-height: 200px;
	border-radius: 6px;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.article-content {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.article-date {
	color: var(--main-darck);
	font-weight: 400;
	font-size: 12px;
	line-height: 100%;
}

.article-title {
	font-weight: 600;
	font-size: 24px;
	line-height: 100%;
	max-height: 50px;
	min-height: 50px;
	overflow: hidden;
	text-overflow: ellipsis;
	color: var(--main-darck);
}
.article-description{
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	max-height: 100px;
	min-height: 100px;
	overflow: hidden;
	text-overflow: ellipsis;
	color: var(--main-darck);
	padding-right: 10px;
}
.article-description b,.article-description strong{
	font-weight: 400!important;
}
.read-more {
	color: var(--main-red);
	display: flex;
	align-items: center;
    gap: 8px;
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	text-decoration: underline;
	text-decoration-style: solid;
	text-decoration-offset: 0%;
	text-decoration-thickness: 0%;
	text-decoration-skip-ink: auto;
	transition: all ease var(--transition-speed);
}
.read-more:hover {
	color: var(--main-red-hover);
	transition: all ease var(--transition-speed);
}

@media (max-width: 1025px) {
	.news-home-container {
		padding: 40px 0 60px;
	}
	.header-row {
		margin-bottom: 45px;
	}

	.main-heading {
		font-size: 28px;
	}

	.news-home-slider-item {
		gap: 20px;
	}

	.news-home-slider-item-picture{
		max-height: 180px;
		min-height: 180px;
		max-width: 100%;
	}

	.article-title{
		font-size: 20px;
		max-height: 58px;
		min-height: 58px;
	}

	.read-more {
		font-size: 14px;
	}

}

@media (max-width: 767px) {
	.news-home-container {
		padding: 20px 0;
	}
	.header-row {
		margin-bottom: 32px;
		align-items: flex-start;
		flex-direction: column;
		gap: 16px;
	}

	.main-heading {
		font-size: 24px;
	}

	.news-home-slider-item {
		gap: 20px;
	}

	.article-title{
		font-size: 18px;
		max-height: 100%;
		min-height: 100%;
	}
	.article-description{
		max-height: 100%;
		min-height: 100%;
	}

	.read-more {
		font-size: 14px;
	}
}
/* End */
/* /local/templates/аrbq/components/bitrix/catalog/catalog_arbq/style.css?17644392644165 */
/* /local/templates/аrbq/components/bitrix/catalog/catalog_arbq/bitrix/catalog.element/.default/style.css?176443926441516 */
/* /bitrix/components/bitrix/sale.products.gift/templates/.default/style.css?17644392373791 */
/* /local/templates/аrbq/components/bitrix/catalog.item/.default/style.css?17644392644111 */
/* /bitrix/components/bitrix/sale.products.gift/templates/.default/themes/green/style.css?1764439237851 */
/* /bitrix/components/bitrix/sale.gift.main.products/templates/.default/style.css?1764439235663 */
/* /local/templates/аrbq/components/bitrix/news.list/product_leasing_option/style.css?176443926412172 */
/* /local/templates/аrbq/components/bitrix/catalog/catalog_arbq/bitrix/catalog.element/.default/themes/green/style.css?17644392641127 */
/* /bitrix/components/bitrix/catalog.store.amount/templates/.default/style.css?17644392332802 */
/* /local/templates/аrbq/components/bitrix/catalog.section/section_elements_slider_buttons/style.css?17644392646159 */
/* /local/templates/аrbq/components/bitrix/catalog.section/section_elements_slider_buttons/themes/green/style.css?1764439264843 */
/* /local/templates/аrbq/components/bitrix/catalog/catalog_arbq/bitrix/catalog.products.viewed/.default/style.css?17644392643828 */
/* /local/templates/аrbq/components/bitrix/catalog/catalog_arbq/bitrix/catalog.products.viewed/.default/themes/green/style.css?1764439264851 */
/* /local/templates/аrbq/components/bitrix/news.list/other_news/style.css?17644392643093 */
