.cart-container {
    padding: 20px;
}

.cart-container .empty-cart {
    padding: 40px;
}

.cart-container .empty-cart i {
    font-size: 42px;
    color: #a2a2a2;
}

.cart-container .cart-item:not(:last-child) {
    border-bottom: 1px solid #9ab9ab;
}

.cart-container .cart-item table {
    table-layout: fixed;
    width: 450px;
}

.cart-container .cart-item table td {
    padding: 5px 10px;
}

.cart-container .cart-item table td:first-child {
    width: 250px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.cart-container .cart-item table td:nth-child(2) {
    text-align: right;
    width: 70px;
}

.cart-container .cart-item table td:nth-child(3) {
    text-align: right;
    width: 105px;
    font-weight: 600;
}

.cart-container .cart-item table td:last-child {
    text-align: center;
    width: 40px;
}

.cart-container .cart-item table td:last-child a {
    color: #073c5e;
}

.cart-container .cart-item table td:last-child a:hover {
    color: #ab2724;
}

.cart-container .sum-price {
    text-align: right;
    margin-top: 25px;
}

.cart-container .sum-price > span:first-child {
    font-weight: 400;
    padding-right: 5px;
}

.cart-container .sum-price > span:last-child {
    font-weight: 800;
}

.cart-container .order-from-cart {
    margin-top: 25px;
    text-align: right;
}

.cart-container .order-from-cart button {
    padding: 8px 10px;
}