/*! 
 * 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
 */
.sc-cart-trigger{
	display:inline-flex !important;
	margin-top:11px;
}

.sc-cart-item-list {
    min-height: 50px;
	/* fixes the Buy button to bottom of cart & scrolls the ul of cart items */
	overflow: auto;
	height: calc(100vh - 330px);
}
.sc-cart-item-note{
	width:40%;
}
.sc-cart-remove {
    background: transparent;
    border: none;
    font-size: 20px;
    position: absolute;
    top: 0;
    right: 0;
}

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

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

.sc-cart-item-qty {
    width: 55px;
    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-summary {
    text-align: right;
    margin-top: 25px;
    padding-top: 5px;
}

.sc-cart-summary {
    text-align: right;
    font-size: 1.5em;
}

.sc-cart-subtotal {
}

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

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

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

.sc-cart-item img {
    margin-right: 1em;
    width: 60px;
    float: left;
	max-heigght: 80px;
}

.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;
}

h4.list-group-item-heading {
    margin: 0;
}
.list-group-item-heading{
	font-weight:300;
	font-size:1.2em;
}
.strikethrough{
	text-decoration: line-through red;
	text-decoration-line: line-through;
	-webkit-text-decoration-line: line-through;
	text-decoration-color: red;
	-webkit-text-decoration-color: red;
}
#cid-input{
	text-transform:uppercase
}
#cd-cart-trigger-sm, #cd-cart-trigger{
	color:#fff;
	margin-top:8px;
}

/******************************************************************************/
/* SmartCart Product Buy Buttons */
.buy-button-container{
	
}
.product-size-container{
	display:inline-flex;
}
.product-size{
	
	border: 1px solid silver;
	background: #eee;
	padding: 0.2em;
	min-width: 30px;
	margin-right: 8px;
	margin-bottom: 8px;
	text-align: center;
	cursor: pointer;
	
}
.product-size.active{
	border: 1px solid red;
	padding:  0.2em;
	background-color: #f1f6f0;
	filter:drop-shadow(1px 1px 2px #807d7d);
}
.product-size.disabled{
	background-image: url('../img/cross.png');
	background-size: cover;
    background-repeat: no-repeat;
	z-index: 99;
	opacity: 0.5;
	cursor: none;
	background-position: center;
	background-size: contain;
}
.product-colour.active{
	border: 1px solid red;
	padding:  0.2em;
	background-color: #f1f6f0;
	filter:drop-shadow(1px 1px 2px #807d7d);
}
.product-colour-container{
	position:relative;
}
.product-colour.disabled{
	/**/
	background-image: url('../img/cross.png');
	background-size: cover;
    background-repeat: no-repeat;
	z-index: 99;
	opacity: 0.5;
	cursor: none;
	background-position: center;
	background-size: contain;
	
}
.product-format-item.disabled{
	border: 1px solid #b5b2b2;
	background-color: #eeecec;
	
}
.product-format-item{
	cursor: pointer;
	padding: 5px 1px 5px 10px;
	border: 1px solid #b5b2b2;
	border-radius: 5px;
	margin-bottom: 0.7em;
}

.product-format-item.active{
  border: 1px solid red;
  padding: 5px 1px 5px 10px;
  background-color: #EDFDFF;
  filter:drop-shadow(1px 2px 3px #807d7d);
}

.product-colour-container{
	display:inline-flex;
}
.product-colour{
	
	border: 1px solid silver;
	background: #eee;
	padding: 0.2em;
	min-width: 80px;
	margin-right: 8px;
	text-align: center;
	cursor: pointer;
	
}
.product-title{
	font-weight: 600;
}
.product-avail{
	font-style: italic;
}
.product-msg{
	color:#9b0f0f;
	font-weight: 600;
}
.product-stp{
	color:#9b0f0f;
	font-weight: 600;
}
.product-buy-btn{
	border-radius: 5px;
}