.cart-page .current-breadcrumb {
    color: var(--md-green);
}
.cart-page .title {
    font-weight: 500;
}
.cart-item {
    margin: 10px;
    padding-bottom: 2vw;
}
.cart {
    background-color: rgb(247, 247, 247);
}

.cart-item .cart-item-img {
    width: 100%;
}
.cart-item .cart-item-name {
    margin-top: auto;
    margin-bottom: auto;
}
.cart-item .quantity-btns {
    border: 1px solid black;
}
.cart-item .cart-item-quantity {
    margin: auto;
}
.cart-item #plus-one-quantity {
    border-left: 1px solid black;
    border-radius: unset;
}
.cart-item #minus-one-quantity {
    border-right: 1px solid black;
    border-radius: unset;
}
.cart-item #update-cart-btn {
    background-color: black;
    color: white;
    width: 100%;
    margin-top: 10px;
    border-radius: unset;
}
#remove-product-btn {
    width: 100%;
    color: red;
}

.trash-remove-icon {
    fill: red;
}

.change-address-btn {
    color: var(--md-green);
}

.checkout-btn {
    width: 100%;
    background: var(--md-green);
    color: white;
    border-radius: unset;
    margin-top: 3vw;
}

.checkout-btn:hover {
    color: white;
    background-color: #058e00;
}

.cart-total {
    background-color: rgb(110, 110, 110);
    color: white;
}

/*--------------------4K--------------------*/
@media only screen and(min-width: 1441px) {
    .cart-item .cart-item-name,
    .cart-item .cart-item-quantity,
    .cart-item .item-total {
        font-size: 0.95vw;
    }
}
/*--------------------Laptop--------------------*/
@media screen and (min-width: 992px) and (max-width: 1440px) {
    .cart-item .cart-item-name,
    .cart-item .cart-item-quantity,
    .cart-item .item-total {
        font-size: 1.5vw;
    }
}

/*--------------------TABLET--------------------*/
@media only screen and (max-width: 991px) and (min-width: 568px) {
    .cart-item .cart-item-name,
    .cart-item .cart-item-quantity,
    .cart-item .item-total {
        font-size: 2vw;
    }
}

/*--------------------MOBILE--------------------*/

@media screen and (max-width: 567px) {
    .cart-item .cart-item-name,
    .cart-item .cart-item-quantity,
    .cart-item .item-total {
        font-size: 5vw;
    }
}
