.cart-front {
	
}

.cart-front.cart {
    position: fixed;
    top: 10px;
    left: calc(50% - 30px);
    z-index: 1000;

	width: 70px;
	height: 50px;

	/* background-color: green; */
	background-color: white;
	border-radius: 10px;

    cursor: pointer;

    display: flex;
    align-items: center;

	border: 1px solid black;
	/* padding: 10px; */
}

.cart-front.cart .quantity {
	width: 25px;
	height: 25px;

	/* background-color: red; */

	display: flex;
	justify-content: center;
}

.cart-front.cart .image {
	background-image: url(../icon/cart.png); 
	background-size: 65%;
	background-repeat: no-repeat; 
	background-position: center; 

	width: 40px;
	height: 40px;

	/* margin: 5px; */

    /* background-color: blue; */
}