.header{
    background: rgb(99, 193, 216);
}
.navbar:hover{
    background: rgb(67, 175, 202);
}
.cart-page{
    margin: 80px auto;
}
table{
    width:100%;
    border-collapse: collapse;
}

.cart-info{
    display: flex;
    flex-wrap: wrap;
}
th{
    text-align: left;
    padding: 5px;
    color: #fff;
    background: #ff523b;
    font-weight: normal;
}

td{
    padding: 10px 5px;

}

td input{
    width: 40px;
    height: 30px;
    padding: 5px;
}

td a{
    color: #ff523b;
    font-size: 12px;
}

td img{
    width: 80px;
    height: 80px;
    margin-right: 10px;
}
.total-price{
    display: flex;
    justify-content: flex-end;
}
.total-price table{
    border-top: 3px solid #ff523b;
    width: 100%;
    max-width: 400px;
}

td:last-child{
    text-align: right;
}

th:last-child{
    text-align: right;
}

.container-cart{
    background-color: rgba(71, 126, 202, 0.941);
    color: rgb(7, 7, 7);
}
.container-cart ul li a{
    color: #fff;
}