/*!
 * jQuery Smart Cart v3.x
 * The smart interactive jQuery Shopping Cart plugin with PayPal payment support
 * http://www.techlaboratory.net/smartcart
 *
 * Created by Dipu Raj
 * http://dipuraj.me
 *
 * Licensed under the terms of the MIT License
 * https://github.com/techlab/SmartCart/blob/master/LICENSE
 */

/*cart*/
.cart-minus{
    outline: none;
    border: none;
    background: white;
    color: white;
    height: 22px;
    margin: 0 10px;
}
.cart-minus:after{
    content: "\f147";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    /*--adjust as necessary--*/
    font-size: 20px;
    /*position: absolute;*/
    top: 70px;
    left: 18px;
    color: #ba1900;
}
.cart-plus{
    outline: none;
    border: none;
    background: white;
    color: white;
    height: 22px;
    margin: 0 10px;
}
.cart-plus:after{
    content: "\f196";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    /*--adjust as necessary--*/
    font-size: 20px;
    /*position: absolute;*/
    top: 70px;
    left: 90px;
    color: #4cae4c;
}

.content .cart{
    /*padding: 25px 15px 0 0;*/
}

.sc-product-item .item strong {
    margin-top: -4px;
}

.sc-product-item .item .sc-add-to-cart {
    margin-top: -8px;
}

.sc-cart-item-list {
    max-height: 400px;
    overflow-y: auto;
}

.sc-cart-summary .sc-cart-summary-subtotal span {
    /*display: inline-block;
    margin-top: 2%;
    font-weight: bold;*/
    font-size: 12px;
}

.sc-cart-remove {
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    top: 0;
    right: 0;
}

.sc-cart-remove:hover {
    color: red;
}

.sc-cart-empty-msg img {
    text-align: center;
    width: auto;
    padding: 10px 0 30px;
}

.sc-cart-empty-msg {
    clear: left;
    color: #999;
    margin: 0;
    padding: 10px;
    width: 100%;
    text-align: center;
}

.sc-cart-item-qty {
    width: 30px;
    font-size: 16px;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: none;
    outline: none;
    text-align: center;
    transition: border-color 0.15s ease-in-out 0s, -webkit-box-shadow 0.15s ease-in-out 0s;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s, -webkit-box-shadow 0.15s ease-in-out 0s;
}
.sc-cart-item-amount{
    float: right;
    font-size: 16px;
    margin: 5px 0;
}
.sc-cart-item-summary {
    text-align: right;
    margin-top: 5px;
    padding-top: 5px;
}

.sc-cart-subtotal {
    float: right;
}

.sc-cart-subtotal p {
    font-size: 12px;
}

.sc-cart-toolbar {
    margin-top: 10px;
    text-align: right;
}

.sc-cart-toolbar button {
    outline: none;
    width: 100%;
    color: #fff;
    padding: 10px;
    font-size: 16px;
    margin-top: 5%;
    text-decoration: none;
    border: 1px solid #5cb85c;
    background: #5cb85c;
}

.sc-cart-toolbar button:hover {
    border: 1px solid #558B2F;
    background: #558B2F;
    color: white;
}

/*.sc-cart-toolbar button.disabled img {*/
/*opacity: .5;*/
/*}*/

/*.sc-cart-item img {*/
/*margin-right: 10px;*/
/*width: 60px;*/
/*}*/

.sc-highlight {
    /*-webkit-animation: highlight 1s;*/
    /*animation: highlight 1s;*/
}

@keyframes highlight {
    from {
        background: #faebcc;
    }

    to {
        background: none;
    }
}

@-webkit-keyframes highlight {
    from {
        background: #faebcc;
    }

    to {
        background: none;
    }
}

.sc-product-item {
    position: relative;
}

.sc-product-item:after, .sc-product-item:before {
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}

.sc-added-item {
    border-color: #5cb85c;
}

.sc-added-item:after {
    content: "\2713 ";
    display: inline-block;
    position: absolute;
    top: 0;
    right: 4px;
    z-index: 99;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    white-space: nowrap;
}

.sc-added-item:before {
    content: "";
    display: inline-block;
    position: absolute;
    z-index: 98;
    top: 0;
    right: 0;
    border-style: solid;
    border-width: 0 40px 40px 0;
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
    border-color: rgba(255, 255, 255, 0) #5cb85c rgba(255, 255, 255, 0) rgba(255, 255, 255, 0);
}

.sc-button-checkout-default {
}

.sc-button-checkout-paypal {
    border: 0;
    cursor: pointer;
    padding: 0;
    width: 170px;
    height: 32px;
}
