.product_item{
    position:relative;
    /*border-radius: 5px;*/
    /*border: 1px solid #e1e1e1;*/
    background-color: #ffffff;
    /*margin-right: 1.2%;*/ /*1.64%;*/
    
    padding: 0;
    border-radius: var(--atmr-border-radius-2xl);
    border: 1px solid var(--border-muted);
}
.product_item .prices {
    order:  5;
    padding: 8px 16px 16px 16px;
    gap: 8px;
    min-height: 32px;
    
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-self: stretch;
    flex-grow: 1;
    justify-content: flex-end;
}
.product_item .prices .divider {
    height: 1px;
    background: var(--url-bg-separator-dashed-2) repeat-x;
}
.product_item .prices .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product_item .prices .price-row > * {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product_item .prices .price-row .right {
    align-items: flex-end;
    justify-content: flex-start;
}
.product_item .prices .price-row .rub {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
}
.product_item .prices .price-row .muted {
    font-family: 'Gilroy-Regular';
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: var(--fg-muted);
}
.product_item .product_art .prop-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 2px 16px;
    font-family: 'Gilroy-Regular';
    font-size: 12px;
}
/* .product_item .product_art .prop-row:nth-child(even) */
.product_item .product_art .prop-row.even {
    background: rgba(249, 249, 253, 1);
}
.product_item .product_art .prop-row .prop-name {
    color: var(--fg-muted);
}
.product_item .product_art .prop-row .prop-val {
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0px;
    text-align: right;
}
.product_item .partnumbers {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    
    color: var(--fg-muted);
    font-family: 'Gilroy-Regular';
    font-size: 12px;
    font-weight: 600;
    line-height: 16px; /* 133.333% */
}
.product_item .partnumbers .partnumber {
    display: flex;
    align-items: center;
    gap: 2px;
}
.product_item .partnumbers .partnumber .btn-copy-partnumber {
    display: flex;
    width: 16px;
    height: 16px;
    padding: 2px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.product_item .partnumbers .manufacturer {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.product_item .product_img {
    order: 1;
    position: relative;
    padding-bottom: 16px;
    height: 110px;
    max-height: 110px;
    overflow: hidden;
    border-radius: 5px 5px 0 0;
}
.product_item .product_img img{
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin:0px auto;
}
.product_item .product_desc {
    order: 4;
}
.product_item .bx_catalog_item_container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    padding-top: 16px;
    height: 100%;
}
.product_item.hover .bx_catalog_item_container {
    height: auto;
}
.product_item .props-to-item-selector-modal {
    border-radius: 9999px;
    border: 1px solid var(--border-muted);
    background: var(--bg-surface1);
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 16px;
    right: 16px;
}
.catalog_product.view-mode-top .product_item .props-to-item-selector-modal {
    display: none;
}
.product_item .delivery-date {
    display: flex;
    align-items: center;
    gap: 2px;
    
    color: var(--fg-soft);
    font-weight: 600;
    line-height: 20px; /* 142.857% */
}
.product_item .delivery-date svg[data-img-code="icon-delivery-box-white"] path[fill="white"] {
    fill: var(--success-default);
}
.product_item .bx_catalog_item_container > * {
    padding-left: 16px;
    padding-right: 16px;
}
.product_item .bx_catalog_item_container .product_art {
    padding-left: 0;
    padding-right: 0;
}
.product_item .bx_catalog_item_container .product_art::before,
.product_item .bx_catalog_item_container .product_art::after {
    content: '';
    display: block;
    height: 1px;
    background: var(--url-bg-separator-dashed) bottom left;
}
.catalog_product .product_item {
    width: 100%;
    /*width: calc(50% - 8px);*/
    
    align-self: stretch;
    display: flex;
    flex-direction: column;
}

.product_item.hover {
    /*height: auto !important;*/
    overflow: visible;
    z-index: 8; /*999*/
}
.catalog_product .product_item.hover {
    border: none;
    padding: 0;
}
.product_item .product-main-info {
    order: 3;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 16px;
}
.product_item.hover .product_name {
    overflow: visible;
    max-height: none;
}
.product_item.hover .product_buttons {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    margin-top: 10px;
    margin-bottom: 6px;
}
.product_item.hover .bx_catalog_item_container {
    border-radius: 5px;
    border: 1px solid #e1e1e1;
    background: #fff;
    /*position: relative;*/
    
    width: 100%;
    min-height: 100%;
    
    /*padding: 16px;*/
    border-radius: var(--atmr-border-radius-2xl);
}
.product_item.hover .product_desc {
    /*padding-bottom: 17px;*/
}

.product_item:last-child{
    margin-right:0;
}

.catalog_product .product_item:nth-child(6n){
    /*margin-right:0;*/
}
.catalog_product .product_item{
    /*margin-bottom:25px;*/
}

.bx_catalog_list_home .bx_catalog_item{
    position:relative;
    /*float:left;*/
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
    background:#fff;
    -webkit-transition:none;
    -moz-transition:none;
    -ms-transition:none;
    -o-transition:none;
    transition:none;
    /*margin-bottom:30px;*/
    /*height:350px;*/
}








.product_name{
    color: rgba(0, 0, 0, 1);
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    text-decoration: none;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    
    /*-------------*/
    /*padding: 10px 30px 0 17px;*/
    max-height: 40px;
    min-height: 40px;
    /*-------------*/
}
a.product_name:hover{color: rgba(0, 0, 0, 1);text-decoration: none;}
.product_name a{color: #0a3a5a;font-size:1em;}

.product_art{
    order: 4;
}
.product_price{
    display: none;
    color: rgba(233, 233, 233, 1);
    /*font-size: 22px;
    font-weight: 700;*/
    /*margin: 16px 0 16px;*/
    line-height: 1;
    
    
    
    background: var(--neutral-default);
    padding: 0 7px;
    /*border-radius: 10px;*/
    /*display: inline-block;*/
    line-height: 27px;
    position: relative;
    order: 5;
}
.product_price::before, .product_price::after {
    content: '';
    display: block;
    position: absolute;
    width: 7px;
    height: 100%;
    background: var(--url-bg-price) no-repeat;
    top: 0;
}
.product_price::before {
    left: -7px;
}
.product_price::after {
    right: -7px;
    background-position-x: 100%;
}
.product_price strike{font-weight:normal;font-size:0.8em;}

/*
.product_buttons{
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}
.product_more, #quick-order-form-btn {
    display:inline-block;cursor:pointer;
    width: 48%;
    height: 32px;
    border-radius: 3px;
    background-color: #eaeaea;
    color: #464646;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    line-height: 31px;
    margin-right: 2%;
}
.product_more:hover{
    background-color: #cfcfcf;
    color: #464646;
    text-decoration: none;
}
.product_buy{ display:inline-block;cursor:pointer;
    width: 48%;
    height: 32px;
    border-radius: 3px;
    background-color: #e31e24;
    text-align: center;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 31px;
}
.product_buy:hover{
    background-color: #bc1217;
    text-decoration: none;
    color: #ffffff;
}
.product_buy a,
.special_container .product_buy a{display:inline-block; color:#ffffff;}
.product_buy a:hover,
.special_container .product_buy:hover a{text-decoration:none;}
.product_buttons .product_buy a {
    width: 100%;
}
*/