.priceDiscount {
    color: #d60303 !important;
}

.list-elements__item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    flex-wrap: wrap;
    padding: 10px;
    box-sizing: content-box;
    margin-bottom: 15px;
}

.list-elements__item:hover{
    box-shadow: 0px 10px 20px rgb(0 0 0 / 10%);
}

.list-elements__title{
    font-weight: bold;
    font-size: 18px;
    color: #000;
    width: 250px;
}

/* Price && quantity block */

.list-elements__quantity {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.list-elements__quantity .left-column-price {
    display:flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    padding:40px 50px 0 50px;
    order: -1;
}
.list-elements__id{
    color: #807c7c;
    font-size: 14px;
}

.list-elements__basket-items{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.list-elements__price_base{
    font-size: 18px;
}

.list-elements__price_discount{
    font-size: 14px;
    text-decoration: line-through;
}

.list-elements.container .product-basket-link{
    width: 110px;
}

.list-elements .no-available{
    margin-top: 0;
}

.list-elements__image{
    width: 100px;
    height: 100px;
}

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

.list-elements .element-price__price,
.bottom_item_container .element-price__price {
    display:none;
}
.list-elements .element-price__price.active,
.bottom_item_container .element-price__price.active {
    display:block;
}



@media (max-width: 550px) {

    .list-elements__quantity {
        display:flex;
        flex-wrap:wrap;
        margin-top:30px;
        align-items: flex-start;
    }

    .list-elements__quantity .element-price__total-price,
    .list-elements__quantity .left-column-price element__item {width:50%;}
    .list-elements__quantity .right-column-price {position:relative;top:-35px;}
    .list-elements__quantity .left-column-price {padding:0;margin-left:auto;order:0}
    /*.npl-brands-section .element-price__total-price {order:1}*/
    .npl-brands-section .left-column-price element__item {order:0}
    .npl-brands-section .right-column-price {
        order:2;
        margin-left:auto;
    }
    .npl-brands-section .left-column-price {margin-left:0}
    .npl-brands-section.list-elements .element-price__total-price {
        justify-content: flex-end;
        position: absolute;
        right: 0;
    }
    .npl-brands-section .list-elements__quantity {justify-content: space-between;}
    .box-right-top .element-price {width:100%;}

}

@media (max-width: 1200px) {
    .list-elements{
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        grid-gap: 20px;
    }

    .list-elements__item{
        height: auto;
        grid-row-gap: 15px;
    }

    .list-elements__image{
        width: 100%;
        height: auto;
    }

    .list-elements__image img{
        width: 100%;
        max-height: 345px;
        object-fit: cover;
    }

    .list-elements__item{
        display: grid;
    }

    .list-elements__basket-items{
        margin-top: 20px;
        display: grid;
    }

    .list-elements__size{
        grid-column: 2 / 3;
    }

    .list-elements__quantity{
        grid-column: 1 / 2;
    }

    .list-elements.container .list-elements__basket-items .product-basket-link{
        grid-column: 2 / 3;
    }

    .list-elements__quantity .box-position-npl-m2-elem{
        right: 60px;
    }
    .list-elements__price {
        margin-bottom: 10px;
    }
}

/* Product rating badge on listing cards */
.npl-listing-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 6px 0 4px;
    font-size: 13px;
    line-height: 1.2;
    color: #3a3348;
}

.npl-listing-rating__star {
    color: #f0a000;
    font-size: 14px;
    line-height: 1;
}

.npl-listing-rating__value {
    font-weight: 600;
    color: #2c2a33;
}

.npl-listing-rating__sep {
    color: #9a94a8;
    margin: 0 1px;
}

.npl-listing-rating__count-num {
    font-weight: 600;
    color: #2c2a33;
}

.npl-listing-rating__count-word {
    font-weight: 400;
    color: #9a94a8;
}