/*! 
 * 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
 */
 
 
.bg-info{
	/* piso a bootstrap*/
	margin-left: -1px;
    margin-top: -1px;
}
.sc-cart{
	top: 15%;
    position: fixed;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	z-index: 1;
    
}

.sc-cart-item-name {
	padding-right: 10px;
}
.sc-cart-item {
	border-top: 1px solid #c3c3c3;
    padding-bottom: 10px;
    padding-top: 10px;
    font-size: 12px;
}
.sc-cart-item:first-of-type {
	border-top: none;
    padding-top: 0;
}

.sc-cart-item-list {
	max-height: 55vh;
    overflow-y: auto;
	padding: 10px 5px;
    min-height: 50px;
}

.sc-cart-remove {
	padding-left: 4px;
    padding-right: 4px;
    background: rgba(207, 120, 120, 0.24);
    border: none;
    position: relative;
    float: right
}

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

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

.sc-cart-item-qty {
    width: 40px;
    border-radius: 3px;
    font-size: 12px;
    padding: 4px 0 3px 6px;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    -webkit-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, -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 {
	font-weight: bold;
}

.sc-cart-item-summary {
	text-align: right;
    margin-top: 5px;
    padding-top: 5px;
}

.sc-cart-summary {
    text-align: right;
}


.sc-cart-subtotal {
	color: #ff061e;
}


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

.sc-cart-toolbar button {
    margin-left: 5px;
}

.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 {
	margin-bottom: 10px;
	box-shadow: -1px 3px 8px 0 rgba(0, 0, 0, 0.12);
	background-color: rgba(255, 255, 255, 0.83);
    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-cart-checkout{
	margin-bottom: 5px;
}

.sc-cart-clear{
	padding: .1rem .5rem;
    font-size: .75rem;
}

.sc-button-checkout-default {
}

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