// out: ../cart.css, compress: true
body {
    #cart-items {
        .cart-item {
            margin-bottom: 15px;
            padding: 15px;
            border: 1px solid #ccc;
            height: 100%;
            a {
                color: #000;
                text-decoration: none;
            }
            .product-remove {
                position: absolute;
                top: 0;
                right: 15px;
                padding: 15px;
                a {
                    &:hover {
                        text-decoration: underline;
                    }
                }
            }
            .product-thumbnail {
                img {
                    display: block;
                    max-width: 100%;
                    height: auto;
                }
            }
            .product-quantity {
                input {
                    max-width: 100%;
                }
            }
        }
        .cart-details {
            padding: 15px;
            border: 1px solid #ccc;
            .woocommerce-shipping-methods {
                padding: 0;
                list-style: none;
                input {
                    margin-right: .5em;
                }
            }
            .form-row {
                display: block;
                label, .password-input, .woocommerce-input-wrapper {
                    width: 100%;
                    display: block;
                }
                input[type="text"] {
                    width: 100%;
                    padding: 10px;
                    border: 1px solid #b7b7b7;
                    color: #7f7f7f;
                    display: block;
                }
                .select2-container--default .select2-selection--single {
                    border-radius: 0;
                }
            }
            input#coupon_code {
                margin-bottom: 15px;
            }
            .order-total {
                margin-bottom: 15px;
            }
            .button {
                text-align: center;
            }
            .tax-rate {
                display: inline-block;
                width: 49%;
            }
        }       
    }
    .related-products {
        padding-top: 20px;
        @import "parts/products/listing.less";
        .single-product-listing {
            padding: 15px;
        }
        .nav-btn {
            font-size: 40px;
            color: #999;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            &.prev-slide {
                left: -40px;
            }
            &.next-slide {
                right: -40px;
            }
        }
    }
}
@media screen and (max-width:767px){
    body {
        #cart-items {
            .cart-item {
                padding: 30px 15px 15px;
                .product-remove {
                    padding-top: 0;
                }
                .product-thumbnail, .product-name, .product-quantity {
                    margin-bottom: 10px;
                }
            }
        }
    }
}
@import (inline) "../vendor/owl.carousel.min.css";