﻿/*
Compile-Minify: true
Compile-Area: cart
Compile-OutputGroup: headtag
Compile-Exports: cart-page-css
Compile-Dependencies: bootstrap
*/
input[name="quantity"]::-webkit-inner-spin-button,
input[name="quantity"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[name="quantity"] {
    -moz-appearance: textfield;
}

.btn-remove {
    color: #a94442;
    float: right;
}

.cart-row-container {
    border: 1px solid #ccc;
    margin: 10px 0;
    padding: 10px 0;
}

    .cart-row-container:last-child {
        border-bottom: none;
        margin: 0px;
    }

.cart-title-row {
    border: 1px solid #ccc;
    border-left: none;
    background-color: #F2F2F3;
}

    .cart-title-row:last-child {
        border-right: none;
    }

.cart-row {
    border: none;
}

.cart-image {
    max-height: 101px;
}

@media (max-width: 992px) {
    .cart-image {
        max-height: 175px;
    }

    .cart-row-container:last-child {
        border-bottom: 1px solid #ccc;
        margin-right: -15px;
        margin-left: -15px;
    }

    .cart-row-container {
        margin-right: -15px;
        margin-left: -15px;
    }
}

.cart-div {
    padding-top: 0px;
}

.section-cart {
    border: none;
    display: table;
    float: none;
    width: 100%;
}

.cart-order-summary {
    display: table;
    border: 1px solid #ccc;
    /*border-top: none;
    padding: 15px;*/
    margin-bottom: 15px;
}

.cart-remove {
    color: darkred;
}

@media(max-width: 400px) {
    #section-cart-items {
        padding-left: 0px;
        padding-right: 0px;
    }

    .cart-div {
        padding-left: 0px;
        padding-right: 0px;
    }

    #section-cart-total {
        padding-left: 0px;
        padding-right: 0px;
    }

    .cart-order-summary {
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media (min-width: 992px) {
    .section-cart {
        border: 1px solid #e9e9e9;
    }

    #section-cart-items {
        border-right: 1px solid #e9e9e9;
    }

    .cart-order-summary {
        display: table;
        border: none;
        padding: 0;
    }

    .cart-div {
        padding-top: 33px;
    }

    .cart-row-container {
        border: none;
        border-top: 1px solid #ccc;
    }

    .cart-section {
        border-top: 1px solid #ccc;
    }

    .cart-row {
        border-bottom: 1px solid #ccc;
        border-right: 1px solid #ccc;
        padding-top: 15px;
        padding-bottom: 15px;
        min-height: 175px;
    }

        .cart-row:last-child {
            border-right: none;
        }
}