.btn {
	border: 0;
	outline: 0;
	height: 46px;
	line-height: 46px;
	padding: 0 20px;
	background-color: #222;
	border-radius: 5px;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s ease;
}

.btn.btn-small {
	height: 20px;
	line-height: 20px;

	font-size: 9px;
	font-weight: 600;

	border-radius: 3px;
	padding: 0 15px;
}

.btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.btn-success {
	background-color: var(--primary-color);
}

.btn-danger {
	background-color: #db5b5b;
}

.item-quantity-input {
	width: 60px;
	height: 30px;
	background-color: #fff;
	border: #aaa 1px solid;
	border-radius: 3px;
	font-size: 12px;
	font-weight: 600;
	text-align: center;
	z-index: 1;
}

.item-quantity-input:focus {
	border-color: #4d90fe;
	outline: 0;
}

input[type="number"].item-quantity-input::-webkit-inner-spin-button,
input[type="number"].item-quantity-input::-webkit-outer-spin-button {
	display: none;
}

.item-quantity-group {
	display: inline-flex;
}

.item-quantity-btn {
	width: 30px;
	height: 30px;
	line-height: 30px;
	color: #555;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	background-color: #f7f7f7;
	border: #aaa 1px solid;
	border-radius: 3px;
	cursor: pointer;
	user-select: none;
}

.item-quantity-minus {
	margin-right: -3px;
	padding-right: 3px;
}
.item-quantity-plus {
	margin-left: -3px;
	padding-left: 3px;
}
