body.cart #cart, body.commande #cart{
	display:none;
}
.DeleteMeMiniCart{
	display:none;
}
#cart{
	width: auto;
	min-width:50px;
    position: absolute;
	z-index:10;
   top:0px;
    right: 0;
	height: 50px;
    overflow: hidden;
	transition:height 0.5s;
}
#cart:hover{
	height:auto;
	overflow-y:auto;
	transition:height 0s;
}
#cart:hover ul{
	display:inline-block;
}
#cart ul{
	margin:20px;
	padding:0 0 10px;
	height:auto;
	 background-color: #fff;
	 border:1px solid #666;
	 max-height: 75vh;
    overflow-y: auto;
	box-shadow: -4px 5px 5px 0px rgba(0,0,0,0.43);
-webkit-box-shadow: -4px 5px 5px 0px rgba(0,0,0,0.43);
-moz-box-shadow: -4px 5px 5px 0px rgba(0,0,0,0.43);
	 margin-top:53px;
	 display:none;
}

#cart li{
	list-style:none;
}

#cart img{
	max-height:40px;
}
#cart li.EmptyCart{
	padding:25px 20px 15px;
;
}
