.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;

    .cursor-pointer {
        cursor: pointer;
    }

    .cart-wishlist-table {
        margin-bottom: 25px;

        thead {
            border: 1px solid #ededed;

            tr {
                &:first-child {
                    padding-left: 25px;

                    th {
                        padding: 12px 16px;
                        padding-left: 16px;
                        white-space: nowrap;
                        border-top: 0;
                        border-bottom: 1px solid #ededed !important;
                    }
                }

            }
        }

        tbody {
            position: relative;
            border: 1px solid #ededed;

            tr {
                td {
                    padding: 25px 10px 25px 25px;
                    vertical-align: middle;
                    border-color: #ededed
                }

                .thumbnail {
                    width: 110px;
                    min-width: 110px;
                }

                .name {
                    a {
                        font-size: 1rem;
                        font-weight: 400;
                        color: dimgray;
                    }
                }

                .price {
                    font-size: 0.875rem;
                    font-weight: 600;



                }

                .subtotal {
                    font-size: 0.875rem;
                    font-weight: 600;
                }

                .remove {
                    .btn {
                        font-size: 1.5rem;
                        padding: 5px 10px;
                        color: dimgray;
                    }
                }

                .input-qty {
                    font-size: 0.875rem !important;
                    line-height: 1;
                    max-width: 88px;
                    padding: 0 15px !important;
                    text-align: center;
                    border: none !important;
                }

            }
        }
    }

    // input:not([type="checkbox"]):not([type="radio"]),
    // textarea {
    //     font-size: 1rem;
    //     font-weight: 400;
    //     display: block;
    //     width: 100%;
    //     padding: 10px 30px;
    //     color: #494949;
    //     border: 2px solid rgba(0, 0, 0, 0);
    //     border-bottom-color: rgba(0, 0, 0, 0);
    //     border-bottom-color: #ededed;
    //     background-color: rgba(0, 0, 0, 0);

    //     &:focus {
    //         border-bottom-color: #494949;
    //         outline: none !important;
    //     }
    // }

    // .amount {
    //     font-size: 0.9rem;
    //     color: #494949;
    //     display: flex;
    //     align-items: flex-start;

    //     .currency {
    //         display: flex;
    //         flex-direction: column;
    //         font-size: 0.6rem;
    //         color: #494949;
    //         margin-left: 4px;

    //         span {
    //             line-height: 1;
    //         }
    //     }
    // }
    @media (max-width: 768px) {

        .cart-wishlist-table {
            thead {
                display: none;
            }
            tbody {
                tr {
                    td {
                        display: block;
                        width: 100% !important;
                        margin-bottom: 15px;
                        padding: 0;
                        padding-top: 0px;
                        // text-align: center;
                        display: flex;
                        justify-content: center;
                    }
                }
            }
        }
    }

}