.cart-heading {
    font-size: 2.2rem;
}
.cart-img {
    width: 150px;
    height: 150px;
}
.fixed-size-productname {
    width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.cart-cross {
    font-size: 1.5rem;
    color: rgba(255, 0, 0, 0.5);
    cursor: pointer;
}
.cart-cross:hover {
    color: rgba(255, 0, 0, 1);
}
.cart-product-name {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    font-size: 1.1rem;
}
.empty-cart-img {
    width: 300px;
    height: auto;
}

.delete-icon {
    font-size: 1.1rem;
}

.delete-icon:hover {
    color: red;
}

@media (max-width: 767px) {
    .cart-img {
        width: 90px;
        height: 90px;
    }
    .cart-heading{
        font-size: 1.8rem;
    }
}
