/* FRB Quantity Field */

.frb-qty {
	display: inline-flex;
	align-items: center;
	gap: 0;
	max-width: 100%;
	line-height: 1;
	overflow: hidden;
}

.frb-qty-wrap {
	display: block;
	max-width: 100%;
}

.frb-qty__input {
	width: 72px;
	height: 40px;
	min-height: 40px;
	padding: 0.45rem 0.55rem;
	border: 1px solid #d6d6d6;
	border-left: 0;
	border-right: 0;
	border-radius: 0;
	text-align: center;
}

.frb-qty__input[type=number]::-webkit-inner-spin-button,
.frb-qty__input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.frb-qty__input[type=number] {
	-moz-appearance: textfield;
}

.frb-qty__btn,
.frb-qty__minus,
.frb-qty__plus {
	min-width: 36px;
	width: 36px;
	height: 40px;
	min-height: 40px;
	padding: 0;
	border: 1px solid #d6d6d6;
	background: #f5f5f5;
	color: #111;
	font-size: 1rem;
	line-height: 1;
	cursor: pointer;
}

.frb-qty__btn--minus,
.frb-qty__minus {
	border-radius: 4px 0 0 4px;
}

.frb-qty__btn--plus,
.frb-qty__plus {
	border-radius: 0 4px 4px 0;
}

.frb-qty--no-buttons .frb-qty__input {
	border: 1px solid #d6d6d6;
	border-radius: 4px;
	width: 100%;
}
