#cart_loved_block {
    /* display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
    justify-content: space-between; */
    height: 100%;
    padding: 30px;
}

#cart_loved_block.hidden {
    display: none;
}

.blockcart .cart_loved_empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 90%;
    text-align: center;
    margin: 0 auto;
    flex-direction: column;
}
.blockcart .cart_loved_empty__title {
    color: #111;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
}
.blockcart .cart_loved_empty__text {
    color: #111;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 15px;
}
.blockcart .cart_loved_empty__button_cart {
    border: 1px solid #111;
    padding: 10px;
    border-radius: 4px;
    width: 100%;
    text-transform: uppercase;
    background: #111;
    color: white;
    margin-bottom: 15px;
    cursor: pointer;
}
.blockcart .cart_loved_empty__button_collections {
    width: 100%;
    border: 1px solid #111;
    padding: 10px;
    text-transform: uppercase;
    border-radius: 4px;
    background: white;
    color: #111;
    cursor: pointer;
}
#cart_loved_block .line_item .s_title_block a {
    color: #111;
    font-size: 16px;
    text-transform: lowercase;
    font-weight: 600;
    margin-top: 2px;
}
#cart_loved_block .line_item .s_title_block a::first-letter {
    text-transform: uppercase;
}
#cart_loved_block .product_color {
    display: flex;
    gap: 7px;
    align-items: center;
    margin-top: 10px;
}
#cart_loved_block .product_color__dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #f2f2f2;
}
#cart_loved_block .product_color__name {
    color: #111;
    font-size: 16px;
    font-weight: 400;
}
#cart_loved_block .pro_column_right {
    margin-left: 100px;
}
#cart_loved_block .pro_column_left {
    width: auto;
}
#cart_loved_block .line_item {
    position: relative;
    border-bottom: none;
    margin-bottom: 25px;
}
#cart_loved_block .line_item .remove_from_love {
    position: absolute;
    bottom: 45px;
    right: 0;
}
#cart_loved_block .line_item .remove_from_love i {
    font-size: 22px;
    color: #111;
}
#cart_loved_block .line_item .product-price-and-shipping {
    margin-top: 49px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
#cart_loved_block .line_item .product-price-and-shipping .price {
    font-size: 18px;
}
#cart_loved_block .line_item .product-price-and-shipping .price:nth-child(3) {
    color: var(--font-red);
    
}
