/** CART STYLES **/

/* Mini cart */

.fa-shopping-cart .total-in-cart {
    position: absolute ;
    top: 7px;
    left: 3px;
    font-family: sans-serif ;
    font-weight: 700;
    font-size: 11px;
    color: #fff;
    width: 15px;
    height: 15px;
    width: 100%;
    line-height: 15px;
    text-align: center;
}

#minicartarea .total-in-cart {
    display: none;
}

.min-cart {
    position: absolute;
    left: 50%;
    margin-left: -150px;
    width: 300px;
    box-sizing: border-box;
    top: 28px;
    text-align: center;
    line-height: 1.4;
    background: #fff;
    padding: 10px;
    z-index: 2600;
    border: 3px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    transition: all ease 0.3s;
    border-radius: 5px;
    display: none ;
}

.min-cart .cartMsgAlert {
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    display: block;
    width: 100%;
    box-sizing: border-box ;

}

.min-cart #minicartarea {
    height: 50vh;
    padding-right: 0px;
    overflow: auto;
    margin-bottom: 10px;
}

.min-cart #minicartarea .cart-left-col,
.min-cart #minicartarea .cart-right-col,
.min-cart #minicartarea .cart-center-row .cart-col {
    float: none;
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
}

.min-cart #minicartarea .cart-center-row .cart-col div {
    display: inline-block ;
}

.min-cart #minicartarea .cart-center-row .cart-col strong {
    padding-right: 1rem;
}

.min-cart #minicartarea .cart-product-name {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.min-cart #minicartarea .cart-center-row .cart-product-subtotal {
    text-align: center;
    width: auto;
    padding-top: 1rem;
}

.min-cart #minicartarea .cart-center-row .cart-product-price {
    margin: 0;
}

.min-cart #minicartarea .cart-product-subtotal strong {
    width: auto;
}

.min-cart #minicartarea .cart-center-row .cart-product-qty input {
    margin: 0 !important;
}

.min-cart #minicartarea .cart-product-image {
    height: 50px;
    width: 100%;
}

.min-cart #minicartarea .cart-product-buttons a {
    padding: 0 1rem;
}

.min-cart #minicartarea .cart-subtotal {
    text-align: center;
    width: 100%;
}

.min-cart #minicartarea .cart-subtotal a {
    margin-top: 1rem;
}

.min-cart #minicartarea .cart-subtotal strong {
    width: auto;
}

.min-cart #minicartarea .cart-subtotal span {
    width: auto;
}

/* end min cart */

/* Main Cart */
.shopping-cart-wrapper {}

.mini-cart-wrapper {}

.checkout-cart-wrapper {}

.cart-product-wrap {
    padding: 2rem;
    box-sizing: border-box ;
    margin-top: 1rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    position: relative ;
}

.cart-col {
    float: left;
}

.cart-left-col {
    width: 100%;
    height: 150px;
    position: relative ;
}

.cart-product-image {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.cart-right-col {
    width: 100%;
}

@media (min-width: 500px) {

    .cart-right-col {
        width: 70%;
    }

    .cart-left-col {
        width: 30%;
    }

    .cart-product-image {
        width: 90%;
        margin-bottom: 0;
    }
}

.cart-top-row {
    margin-bottom: 1rem;
}

.cart-product-name {
    font-size: 2rem;
}

.cart-product-options {}

.cart-product-sku {
    opacity: 0.5;
}

.cart-center-row {
    margin-bottom: 1rem;
}

.cart-center-row .cart-col {
    width: 100%;
    min-height: 10px;
}

.cart-product-price {
    margin-bottom: 1rem;
}

.cart-product-price div strong {
    padding-bottom: 0rem;
    display: inline-block;
}

.checkout-cart-wrapper .cart-product-price div strong {
    padding-bottom: 0;
}

.cart-product-qty {
    text-align: left;
}

/* Larger than tablet */
@media (min-width: 800px) {

    .cart-center-row .cart-col {
        width: 33.3%;
        min-height: 10px;
    }

    .cart-product-price div strong {
        padding-bottom: 1rem;
        display: inline-block;
    }

    .cart-product-qty {
        text-align: center;
    }
}

.cart-product-qty input {
    width: 100%;
    max-width: 100px;
    min-width: 60px;
    text-align: center;
    display: inline-block ;
}

.cart-product-qty .fa {
    cursor: pointer;
}

.cart-product-qty .fa:hover {
    opacity: 0.8;
}

.fa-minus-circle {}

.fa-plus-circle {}

.cart-product-subtotal {
    text-align: right;
}

.cart-product-subtotal div strong {
    padding-bottom: 1rem;
    display: inline-block;
}

.checkout-cart-wrapper .cart-product-subtotal div strong {
    padding-bottom: 0;
}

.cart-product-subtotal strong {
    width: 160px;
    display: inline-block ;
}

.cart-product-subtotal span {
    width: 100px;
    display: inline-block ;
}

.cart-bottom-row {}

.cart-product-buttons {}

.cart-product-buttons a {
    padding: 0 2rem;
    cursor: pointer;
}

a.cart-remove-item {
    padding-left: 0;
}

a.cart-move-to-wish {}

/* Cart Action Buttons */

#cartActionButtons input {
    width: 100%
}

/* Larger than tablet */
@media (min-width: 800px) {

    #cartActionButtons {
        text-align: right;
    }

    #cartActionButtons input {
        width: auto;
        min-width: 200px;
    }
}

/* Shopping Cart Footer on Checkout */

.shopping-cart-footer {
    text-align: right;
    padding-bottom: 2rem;
}

.shopping-cart-footer em {
    display: block;
    opacity: 0.7;
}

.shopping-cart-footer strong {
    width: 160px;
    display: inline-block ;
}

.shopping-cart-footer span {
    width: 300px;
    display: inline-block ;
}

.cart-subtotal {
    padding-top: 1rem;
}

.cart-coupons-wrap {
    margin: 2rem 0;
    background: #eee;
    padding: 2rem 0;
}

.cart-coupons-wrap h4 {
    margin: 0;
    margin-bottom: 1rem;
}

.cart-coupon-name {}

.cart-coupon-value {}

.cart-coupon-value span:before {
    content: "- ";
}

.cart-tax-total {}

.cart-tax-rate {}

.cart-shipping-total {}

.cart-order-total {
    font-size: 2rem;
    padding-top: 1rem;
}

/*** cart info styles ***/

.checkout-table input[type=text],
.checkout-table select,
.checkout-table textarea {
    width: 100%;
}

.checkout-table {
    width: 100%;
    border-top: 2px solid rgba(0, 0, 0, 0.2);
}

.checkout-table tr:last-of-type {
    text-align: right;
    border-top: 2px solid rgba(0, 0, 0, 0.2);
}

.checkout-table tr:last-of-type td {
    text-align: right;
    padding-top: 20px;
}

.checkout-table input[type=text],
.checkout-table select,
.checkout-table textarea {
    width: 100%;
    margin: 0;
}

/* Larger than tablet */
@media (min-width: 800px) {

    .cart-FooterWrap {
        text-align: right;
    }

    .checkout-table input[type=text],
    .checkout-table select,
    .checkout-table textarea {
        width: 30%;
    }
}

.checkout-table .smallHelpTxt,
.checkout-table #zip + a {
    display: block;
    position: relative;
}

.checkout-table td {
    text-align: left;
    vertical-align: top;
    width: 50%;
}

.checkout-table tr td:first-of-type {
    width: 10%;
}

#ExpMonth, #ExpYear {
    display: inline-block;
    width: 80px;
}

.checkout-table .pagetitle {
    font-size: 3rem;
    padding: 20px 0;
}

#overlay {
    background: #F0EEE9;
    width: 100%;
    left: 0;
    z-index: 2900;
    display: none;
    padding: 2rem;
    margin-bottom: 30px;
    text-align: center;
    cursor: pointer;
    border-radius: 1rem;
    box-sizing: border-box ;
}

#overlay h2 {
    padding: 0;
    width: 100% !important;
    text-align: center;
}

#overlay .button {
    margin: 0;
}

#overlay em {
    font-style: normal;
}

.selectaddress {
    padding-top: 20px;
}

.selectAddressHeader {
    font-weight: 600;
}

.address {
    border: 2px solid rgba(0, 0, 0, 0.2);
    padding: 10px;
    margin-bottom: 10px;
}

.address span:empty {
    display: none;
}

.address span:after {
    content: ", "
}

.address .use-zip:after {
    content: none;
}

.selectaddress input {
    font-size: 12px;
    line-height: 20px;
    width: auto;
}

.addressClear input {
    width: 100%;
    margin-bottom: 30px;
}

.creditAddress {
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 10px;
    margin-bottom: 10px;
}

.creditAddress span:empty {
    display: none;
}

.creditAddress span:after {
    content: ", "
}

.creditAddress .creditZip:after {
    content: none;
}

.billing-address-title {
    font-weight: 600;
}

.alertTxt,
.cartMsgAlert {
    background: #cc0000;
    display: block;
    width: 100%;
    padding: 1rem;
    color: #fff;
    box-sizing: border-box ;
    border-radius: 5px;
}

.cartMsgAlert {
    background: rgba(0, 0, 0, 0.5);
}

.alertTxt:empty,
.cartMsgAlert:empty {
    display: none;
}

/* Browswer Message */
.upgrade-browser-msg {
    background: rgba(0, 0, 0, 0.7);
    position: relative;
    box-sizing: border-box;
    text-align: center;
    padding: 30px;
    margin: 30px 0;
    width: 100%;
    height: 100%;
    font-size: 2vw;
    line-height: 2vw;
    color: #fff;
}

.upgrade-browser-msg h2 {
    color: #fff;
    font-size: 4vw;
    line-height: 4vw;
}

.upgrade-browser-msg li {
    display: inline-block;
}

/* Group Order History */

#GroupOrderHistory_pnlDetails .cart-wrapper {
    font-size: 1.5rem;
    border: 2px solid rgba(0, 0, 0, 0.2);
    padding: 1rem;
    margin-bottom: 1rem;
}

#GroupOrderHistory_pnlDetails div,
#GroupOrderHistory_pnlDetails div span > span {
    display: block;
    text-align: left;
}

#GroupOrderHistory_pnlDetails .cart-FooterWrap {
    margin-top: 2rem;
}

#GroupOrderHistory_pnlDetails .cart-FooterWrap span {
    display: block;
    text-align: left;
}

#GroupOrderHistory_pnlDetails .cart-FooterWrap span > span {
    display: inline-block;
    text-align: left;
    min-width: 200px;
}

/* Hide these elements if within Products category */
/*
body.page31411 .item-sku,
body.page31411 .item-price,
body.page31411 .add-to-cart,
body.page31411 .product-price,
body.page31411 .product-options,
body.page31411 .product-qty,
body.page31411 .product-addbutton {
    display: none
}
*/

