.cart-container {
    min-height: 56vh;
}
.cart-page-item {
    border: 1px solid var(--custom-darker-grey);
    border-left: none;
    border-right: none;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-left: 0.01rem;
    margin-right: 0.01rem;
}
.cart-page-item-title {
    text-decoration: none;
}
.cart-page-item-delete-row{ 
    text-align: end;
}
.cart-page-item-details {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.cart-page-item-container {
    min-height: 20vh;
    border: 1px solid var(--custom-grey);
    padding: 1rem;
    display: flex;
}
.cart-page-item-form {
    display: flex;
    height: 30px;
    align-items: center;
}
.cart-page-item-quantity {
    width: 50px!important;
    text-align: center;
    padding: .075rem .75rem;
}
.cart-page-item-quantity-summary {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.cart-page-item-image {
    height: 120px;
    margin: auto;
    width: 100%;
    object-fit: contain;
}
.cart-page-item-brand {
    color: var(--westech-green);
}
.cart-page-item-model {
    color: var(--custom-light-blue);
}
.cart-page-item-right-content {
    display: flex;
}
.cart-page-item-button {
    display: flex!important;
    justify-content: center;
    align-items: center;
    padding: 0;
    height: 20px;
    width: 20px;
    border: 1px solid;
    border-radius: 100%;
}
.cart-page-shipping-tax-summary {
    padding: 1rem;
    padding-left: 0!important;
}
.cart-page-summary {
    background: var(--custom-dark-grey);
    padding: 1rem;
    border-radius: 5px;
}
.cart-page-summary-container {
    width: 100%;
    margin: auto!important;
}
.cart-page-summary-cost-row {
    display: flex;
    justify-content: space-between;
}
.cart-page-summary-cost-row p {
    margin-bottom: 0.375rem;
}
.cart-page-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
}
.payment-method-image {
    height: 50px!important;
}

@media only screen and (min-width: 576px) {
    .cart-page-item-form {
        padding-right: 0.375rem;
    }
    .cart-page-item-quantity-summary {
        justify-content: end;
    }
    .cart-page-summary-container {
        width: 95%;
        margin: auto;
    }    
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
}
/* Desktop CSS Changes */
@media only screen and (min-width: 992px) {
}

@media only screen and (min-width: 1200px){
}