.cart-page-container {
    max-width: 1300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
    margin-bottom: 0;
} 

.cart-page-container .cart-page-product-listing-container {
    width: 100%;
}

.cart-page-product-listing-container table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.cart-page-product-listing-container table tr td {
    border: none;
    border-bottom: 1px solid #e1e1e1;
}

.cart-page-product-listing-container table thead {
    background-color: #f8f9fa;
    height: 50px;
}

.cart-page-product-listing-container table thead th:nth-child(1) {
    width: 50%;
    text-align: left;
    padding: 10px;
}

.cart-page-product-listing-container table thead th {
  text-transform: uppercase;
}

.cart-page-product-listing-container table tbody td .cart-product-listing-product-info {
    display: flex;
    align-items: center;
    padding: 10px;
}

.cart-product-listing-product-inf .cart-product-listing-product-title {
    display: flex;
    flex-direction: column;
    width: 90%;
}

.cart-product-listing-product-info img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-right: 20px;
}

.cart-product-listing-product-title .product-code {
    font-size: 14px;
    color: #6c757d;
}

.cart-product-listing-product-title .cart-product-description {
    font-size: 16px;
    font-weight: 600;;

}

.cart-page-product-listing-container table tbody td .cart-product-listing-price {
    font-size: 14px;
    font-weight: 600;
    padding: 10px;
    text-align: center;
}

.cart-page-product-listing-container table tbody td .product-detail-increasement-btn-container,
.cart-page-product-listing-container table tbody td .cart-product-listing-product-total-price {
   justify-self: center;
}

.cart-page-product-listing-container table tbody td .product-detail-increasement-btn-container {
  border: 1px solid #e1e1e1;
}

.cart-page-product-listing-container table tbody td .product-detail-increasement-btn-container input,
.cart-page-product-listing-container table tbody td .product-detail-increasement-btn-container button {
    background: transparent !important;
    padding: 10px;
    border: none;
    cursor: pointer;
}

.cart-page-product-listing-container table tbody tr {
    position: relative;
}


.cart-page-product-listing-container table tbody tr td svg.bi.bi-x-lg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    cursor: pointer;
}


.cart-page-payment-container {
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #f47621;
    padding: 20px;
    margin: 50px 0;
    border-radius: 12px;
    align-self: flex-end;
}

.cart-page-payment-container .cart-page-payment-container-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}
 
.cart-page-payment-container .cart-page-payment-full-info-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.cart-page-payment-full-info-container .cart-page-each-payment-info-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 0.5px solid #e1e1e1;
    height: 50px;
}

.cart-page-payment-full-info-container .cart-page-each-payment-info-container:nth-last-child(1) {
    border-bottom: none;
}

.cart-page-payment-full-info-container .cart-page-each-payment-info-container p {
    font-size: 14px;
    font-weight: 600;
}

.cart-page-each-payment-info-container .cart-payment-total-heading {
    font-size: 14px !important;
    font-weight: 900;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
}

.cart-page-payment-btn {
    width: 100%;
    text-align:center;
    text-decoration: none;
    margin-top: 10px;
    padding: 15px;
    background-color: #f47621;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: 7px;
}

.cart-page-discount-container {
    margin-top: 20px;
    width: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-page-discount-container input {
    width: 100%;
    padding: 13px;
    border: 1px solid #e1e1e1;
    outline: 0;
    font-size: 14px;
    border-radius: 5px 0 0 5px;
}

.cart-page-discount-container button {
    padding: 13px;
    background-color: #f47621;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 0 5px 5px 0;
}

.cart-product-varient-list {
    list-style: none;
    padding: 0;
}

.cart-product-varient-list .cart-product-each-varient-item {
    padding: 0px 0;
    margin-right: 10px;
    border-radius: 5px;
    font-size: 13px;
    color: #6c757d;
}

@media screen and (max-width: 1024px) {
    .cart-page-product-listing-container table tbody tr td svg.bi.bi-x-lg {
       top: 10px;
       transform: unset;
    }
}

@media screen and (max-width: 768px) {
    .cart-page-product-listing-container table {
        width: 800px;
    }

    .cart-page-container .cart-page-product-listing-container {
        overflow: auto;
    }

    .cart-page-payment-container {
        width: 90%;
        align-self: center;
    }
    .cart-page-payment-btn {
        width: 100%;
    }
    .cart-page-discount-container input {
        width: 75%;
    }
    @media (max-width: 280px) {
        .cart-page-payment-btn {
            width: 100%; 
            max-width: 250px; 
            margin: 0 auto; 
            font-size: 12px;
        }
    }
    @media (max-width: 255px) {
        .cart-page-payment-btn {
            width: 100%; 
            max-width: 250px;
            margin: 0 auto;
            font-size: 10px;
        }
    }
    @media (max-width: 225px) {
        .cart-page-payment-btn {
            width: 100%; 
            max-width: 250px;
            margin: 0 auto;
            font-size: 8px;
        }
    }
}