
#amendo-bulk-cart .product {
display: grid;
grid-template-columns: 2fr 1fr;
}

#amendo-bulk-cart .product > div > ul {
	list-style: none;
}

#amendo-bulk-cart .product > div > ul > li {
	display: flex;
	flex-wrap: nowrap;
}

.quantity {
	display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin-right: 1rem;
}
.icon {
	width: 16px;
	height: 16px;
	background-size: cover;
	margin-bottom: 10px;
	display: inline-block;
}

.icon.plus {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM232 344c0 13.3 10.7 24 24 24s24-10.7 24-24V280h64c13.3 0 24-10.7 24-24s-10.7-24-24-24H280V168c0-13.3-10.7-24-24-24s-24 10.7-24 24v64H168c-13.3 0-24 10.7-24 24s10.7 24 24 24h64v64z"/></svg>');
}

.icon.minus {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M256 32a224 224 0 1 1 0 448 224 224 0 1 1 0-448zm0 480A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM160 240c-8.8 0-16 7.2-16 16s7.2 16 16 16H352c8.8 0 16-7.2 16-16s-7.2-16-16-16H160z"/></svg>');
}

.quantity input {
	width: 50px;
	border: 1px solid #ebebeb;
	background: #fff;
	line-height: 25px;
	height: 25px;
	font-size: 1rem;
	-moz-appearance: textfield;
	display: inline-block;
	border-radius: 4px;
	background: #fff;
	font-weight: 700 !important;
}
