.view_cart {
    margin-top: 50px;
    margin-bottom: 150px;
}

.view_cart .cart-items {
    list-style: none;
    margin: 0;
    padding: 0;
}
.view_cart .cart-items li {
    display: flex;
    /* padding: 15px; */
}
.view_cart .cart-items li:not(:last-of-type) {
    /* border-bottom: 1px solid #B3B3B3; */
}
.view_cart .cart-items li .left {
    padding-right: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.view_cart .cart-items li .left img {
    max-width: 100px;
}

.view_cart .cart-items li .middle .product-name {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-family: Quicksand-Medium;
    color: #4D4D4D;
}
.view_cart .cart-items li .middle .product-weight {
    font-size: 0.75rem;
    color: #0b1f8f;
}
.view_cart .cart-items li .middle .product-price {
    color: #dbba00;
    font-size: 1.1rem;
    font-family: Quicksand-Medium;
}
.view_cart .cart-items li .middle .discount {
    font-size: 0.75rem;
    display: flex;
}
.view_cart .cart-items li .middle .discount .price {
    text-decoration: line-through;
    margin-bottom: 0;
}
.view_cart .cart-items li .middle .discount .percentage {
    margin-left: 8px;
    margin-bottom: 0;
}

.view_cart .cart-items li .right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}
.view_cart .cart-items li .right img {
    width: 16px;
    margin-bottom: 20px;
}
.view_cart .cart-items li .right .cart-counter-btns {
    align-items: center;
}
.view_cart .cart-items li .right .cart-counter-btns input {
    background-color: #fff;
    height: 30px;
    width: 38px;
    color: grey;
}
.view_cart .cart-items li .right .cart-counter-btns .btn {
    background-color: #0b1f8f;
    color: #fff;
    line-height: 0.5;
}
.view_cart .cart-items li .right .cart-counter-btns .btn:disabled {
    background-color: transparent !important;
}
.view_cart .cart-items li .right .cart-counter-btns .btn:hover {
    background-color: #0b1f8f;
}

/* Cart exptra */
.cart-extra {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #fff;
}
.cart-extra li {
    font-family: Quicksand-Light;
    padding: 15px;
    border-bottom: 1px solid #B3B3B3;
    display: flex;
    justify-content: space-between;
    color: #0b1f8f;
}
.cart-extra li:last-of-type {
    font-family: Quicksand-SemiBold;
}

.view_cart .cart-items li .item {
    text-align: center;
    width: 100%;
    padding: 10px 1px;
    border-bottom: 1px solid #a09a9a;
    position: relative;
    display: inline-flex;
}

.view_cart .cart-items li .item .img-area {
    text-align: center;
    width: 40%;
    max-width: 40%;
    background-image: url(/images/preloader.png);
    background-repeat: no-repeat;
    background-size: 60% auto;
    background-position: center top;
}

.view_cart .cart-items li .item .img-area a {
    width: 100%;
    height: 100%;
}

.view_cart .cart-items li .item .img-area a img {
    max-width: 150px;
    max-height: 150px;
}

.view_cart .cart-items li .item .content-area {
    text-align: left;
    width: 60%;
    padding-left: 5px;
}

.view_cart .cart-items li .item .item-name {
    /* min-height: 42px; */
    line-height: 1.2em;
    text-transform: capitalize;
    max-width: 85%;
}

.view_cart .cart-items li .item .item-weight {
    font-size: 0.9rem;
    color: orange;
    font-family: Quicksand-Bold;
    line-height: 1;
}

.view_cart .cart-items li .item .item-price {
    color: #c63700;
    font-size: 1.1rem;
    font-weight: bold;
}

.view_cart .cart-items li .item .content-area .rmv {
    font-size: 22px;
    margin-right: 10px;
}

.view_cart .cart-items li .item .content-area .qty-field {
    width: 20%; 
    text-align: center;
}

.view_cart .cart-items li .item a {
    text-decoration: none;
    color: #444444;
}