#cart-container{
	width: 40vw;
	min-height: 500px;
	position: fixed;
	top:0;
	right: -40vw;
	background: #f5f5f5;
	opacity: 0;
	transition: all 0.5s linear;
	box-shadow: 0 -1px 5px #ccc;
	z-index: 2;
}



@media (max-width: 640px) {
	#cart-container{
		width: 80vw;
		right: -80vw;
	}
}

#cart-mask{
	position: fixed;
	top:0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 1;
	transition: all 0.1s linear;
	display: none;
	background: rgba(0,0,0,0.8);

}
#cart-mask.open{
	display: block;
}

#cart-container.open .cart-icon{
	display: none;
}

#cart-container.open{
	right: 0;
	opacity: 1;
}


#cart-container > .cart-inner header{
	padding:10px;
	background: #e5e5e5;
	text-align: center;
	text-transform: uppercase;
}

.table-responsive{
	height: 100%;
	overflow-y: auto;
}


.cart-close-icon{
	position: absolute;
	top:10px;
	right: 10px;
	color:#333;
	font-weight: bold;
}

#cart-items .table.table-noborder > tbody > tr > td{
	text-align: center;
}

#cart-items .table.table-noborder.table-total > tbody > tr > td{
	text-align: right;
	font-size: 1.2rem;
	background: #e5e5e5;
}

.cart-items-lists{
	height:365px;
	overflow-y: auto;
}

.cart-items-lists::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

.cart-items-lists::-webkit-scrollbar
{
	width: 6px;
	background-color: #F5F5F5;
}

.cart-items-lists::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: rgb(194, 194, 194);
}



@media (max-width:640px) {
	.cart-items-lists{
		height: 320px;
	}
}


.cart-item-remove{
	font-size: 0.8rem;
	color:#F00;
}


#cart-container > .cart-inner >  footer{
	position: absolute;
	bottom:0;
	left:0;
	width: 100%;
	display: flex;
	justify-content: space-between;
}

#cart-container > .cart-inner > footer a{
	width: 100%;
	text-transform: uppercase;
	box-shadow: 0 0 10px #000;

}

#cart-container > .cart-inner > footer a.bt:hover{
    border: 0px;
    background-color: #7ea62c !important;
    color:#FFF !important;
}
.cart-show{
	position: relative;
}

.basket-total{
	display: inline-block;
	color:#333;
}