.cart table {

    width: 100%;
    border-collapse: collapse;
}

.cart .product-info {

    display: flex;
    flex-wrap: wrap;
}

.cart th {

    text-align: left;
    padding: 5px 10px;
    color: white;
    background-color: #fb774b;

}

.cart td {

    padding: 10px 20px;

}

.cart td img {

    width: 80px;
    height: 80px;
    margin-right: 10px;
}

.cart td input {

    height: 30px;
    width: 100%;
    padding: 10px;

}

.cart td a {
    color: #fb774b;

}

.cart .remove-btn {

    color: #fb774b;
    text-decoration: none;
    font-size: 14px;
    background: none;
    border: none;
    width: 100%;
}

.cart .edit-btn {

    color: #fb774b;
    text-decoration: none;
    font-size: 15px;
    background-color: white;
    border: none;


}


.cart .product-info p {

    margin: 3px;
}



.cart-total {

    display: flex;
    justify-content: flex-end;

}

.cart-total table {

    width: 100%;
    max-width: 500px;
    border-top: 3px solid #fb774b;
}

.td:last-child {
    text-align: right;
}

.th:last-child {
    text-align: right;
}


.checkout-container {
    display: flex;
    justify-content: flex-end;
}

.checkout-btn {
    background-color: #fb774b;
    color: white;
}


.promo-code {

    background-color: #fb774b;
    width: 50%;
    color: #4b91fb;


}


@media (max-width: 476px) {

    .promo-code {

        background-color: #fb774b;
        width: 100% !important;
        color: #4b91fb;


    }
}


.promo-code::placeholder {
    color: white;
}

.cart>p>a {

    color: black;
    text-decoration: none;

    margin-top: 20px;
}