/* ============================================
   Shopping cart page
   ============================================ */

.cart-page {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 90px 120px;
    box-sizing: border-box;
    color: #2f2f2f;
}

.cart-title {
    font-size: 46px;
    font-weight: 500;
    color: #6c6c6c;
    margin-bottom: 40px;
}

.cart-table-wrap {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    border: 1px solid #bfbfbf;
    background: #ffffff;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.cart-table th,
.cart-table td {
    border: 1px solid #8d8d8d;
    padding: 14px 16px;
}

.cart-table thead th {
    background: #e6e6e6;
    text-align: left;
    font-weight: 500;
}

.cart-table thead th:nth-child(2),
.cart-table thead th:nth-child(3) {
    text-align: center;
    width: 140px;
}

.cart-table thead th:last-child,
.cart-table tbody td:last-child {
    text-align: center;
    width: 70px;
}

.cart-table tbody td:nth-child(2),
.cart-table tbody td:nth-child(3) {
    text-align: center;
}

.cart-table tfoot td {
    font-weight: 600;
    background: #f3f3f3;
}

.cart-empty-row td {
    text-align: center;
    color: #8a8a8a;
    padding: 40px 16px;
}

.cart-remove {
    border: none;
    background: #e0e0e0;
    color: #2f2f2f;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
}

.cart-clear {
    position: absolute;
    right: 120px;
    bottom: 50px;
    border: none;
    background: #173c63;
    color: #ffffff;
    border-radius: 999px;
    padding: 10px 22px;
    font-weight: 600;
    cursor: pointer;
}

.cart-back {
    position: absolute;
    left: 120px;
    bottom: 50px;
}
