.quantity-selector
{
	/* display: none; */
	display: flex;
	flex-direction: column;
	/* background-color: red; */
	
	/* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
}

.quantity-selector .control
{
	display: flex;
	flex-direction: row;
	
	align-items: center;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	overflow: hidden;
}

.quantity-selector .control button
{
	width: 40px;
	height: 40px;
	border: none;
	background: #fff;
	font-size: 15px;
	cursor: pointer;
	transition: background 0.2s;
	font-family: var(--font-family);
}

.quantity-selector .control button:hover
{
	background: #ccc;
}

.quantity-selector .control .count
{
	width: 60px;
	text-align: center;
	font-size: 15px;
	/* font-weight: bold; */
	background: #fff;
	font-family: var(--font-family);
}

.quantity-selector .value
{
	font-size: 12px;
	font-family: var(--font-family);
	margin-top: 3px;
	color: #FF0000;
	text-align: center;
}

.quantity-selector .value.hide
{
	display: none;
}