/* -- Copyright © 2018 Gammill, Inc. All Rights Reserved -- */

#Cart_Counter {
    position: absolute;
    z-index: 1000;
    top: -4px; left: -10px;
    font-size: .8em;
    background-color: #7E172C;
    border: 1px solid #fc320f;
    color: white;
    font-weight: bold;
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 1px #333;
}
#Cart_Counter[total-items]:after {
    content: attr(total-items);
}

#PatternCart_Items {text-align:center;} 
#CartSummary { width: 100%; text-align:center;}
#btnCheckoutTotal { float: right; }
#PatternCart_TotalItems{ font-size: 28px; font-weight: bold; width: auto; text-align:center; margin: 20px;}
.Cart_Item {
    display: inline-block; width: 100%; 
    background-color: #F9F9F9;
    border: 1px solid #686868; border-radius: 5px;
    overflow: auto;
}.Cart_Item:hover { background-color: var(--hover); }
.Cart_Title { font-weight: bold; font-size: 20px; margin: 5px; }
.Cart_Designer { font-size: 16px; margin: 5px;}
.Cart_Image { background-color: #fff;  border: #ddd; border-radius: 5px;}
.Cart_Price { font-weight: bold; }
.btnBuyNow {
    display: inline-block;
    cursor: pointer;
    background-color: var(--csred);
    color: #fff;
    background-image: url(/images/icons/currency_dollar.png);
    background-repeat: no-repeat;
    background-position: 5px 9px;
    margin: 5px;
    padding-left: 35px;
    padding-right: 10px;
    line-height: 40px;
    border-radius: 5px;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    vertical-align: middle;
    border: 1px solid #000;
    overflow: auto;
}
.btnBuyNow:hover{ background-color: var(--csred-hover) }

.StithoutType{color: #ccc;}

#AddToShoppingList { width: 220px; font-size: 20px; background-color: #FFF6F9; border: 1px solid #000; border-radius: 5px; padding: 4px; }
#AddToShoppingList option {
	color: green; font-weight: bold; background-color: #ddd; border: 1px solid #000; }

	/* Add To Cart */
		.btnAddToCart{ width: 220px; height: 38px;
			display: inline-block;
			cursor: pointer;
			color: #000 !important;
			text-decoration: none;
			text-align: right;
			vertical-align: middle;
			background-color: #fff; background-image: url(/images/icons/shopping_cart.png); background-position: 8px 6px; background-repeat: no-repeat;
			margin: 5px;
			padding-left: 40px;
			padding-right: 10px;
			font-size: 26px;
			font-weight: bold; font-size: 18px;
			letter-spacing: 1px;
			line-height: 35px;
			border: 1px solid #000;
			border-radius: 5px; }
		.btnAddToCart:hover {background-color: #eee;} 
		.btnAddToCart2{ width: 220px; height: 38px;
			display: inline-block;
			cursor: pointer;
			color: #000 !important;
			text-decoration: none;
			text-align: right;
			vertical-align: middle;
			background-color: #fff; background-image: url(/images/icons/shopping_cart.png); background-position: 8px 6px; background-repeat: no-repeat;
			margin-top: 5px;
			padding-left: 40px;
			padding-right: 10px;
			font-size: 26px;
			font-weight: bold; font-size: 18px;
			letter-spacing: 1px;
			line-height: 35px;
			border: 1px solid #000;
			box-sizing: border-box;
			border-radius: 5px; }
		.btnAddToCart2:hover {background-color: #eee;} 

		.btnCartRed{
			display: inline-block; width: 220px;
			cursor: pointer;
			color: #fff !important;
			text-decoration: none;
			text-align: right;
			vertical-align: middle;
			background-color: #7b172c; background-image: url(/images/icons/shopping_cart.png); background-position: 8px 6px; background-repeat: no-repeat;
			margin: 5px;
			padding-left: 40px;
			padding-right: 10px;
			font-size: 26px;
			font-weight: bold; font-size: 18px;
			letter-spacing: 1px;
			line-height: 35px;
			border: 1px solid #000;
			border-radius: 5px; }

/* Quick Add to Cart */
    .container {
        position: relative;
        width: 100%;
    }
    .containerLinkMask {
        position: absolute;
        width: 100%;
        height:90%;
        bottom: 25px;
        left:0px;
    }

    .overlay {
        position: absolute; 
        bottom: 4px; 
        right: 0; 
        display: none;
        z-index: 5;
    }

    .overlay>.flex-container {justify-content: space-between; height: 100%;}
        
    .quick_add_button {
        text-align: right; font-size: .8em;
        box-shadow: 0 0 3px 1px black; 
        background: #edededed;
        color:black;
        margin:3px;
        border:1px solid black;
        border-radius: 5px;
        cursor: pointer;
        padding: 2px;
        transition: .5s linear;
        z-index: 5;
    }
    
    .quick_add_button:hover {
        background-color: #961c36;
        color:white;
    }