.variations_form .te-vb__select {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.variations_form .te-vb {
	--te-vb-border: #d8d2c8;
	--te-vb-border-active: #1f3428;
	--te-vb-text: #1c1c1c;
	--te-vb-text-muted: #8d877d;
	--te-vb-bg: #ffffff;
	--te-vb-bg-active: #1f3428;
	--te-vb-bg-disabled: #f5f2ed;
	--te-vb-focus: #1f3428;

	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	width: 100%;
	margin-top: 8px;
}

.variations_form .te-vb__button {
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	min-width: 78px;
	padding: 10px 16px;
	border: 1px solid var(--te-vb-border);
	border-radius: 999px;
	background: var(--te-vb-bg);
	color: var(--te-vb-text);
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.15;
	cursor: pointer;
	transition: border-color 140ms ease, background-color 140ms ease, color 140ms ease, box-shadow 140ms ease, opacity 140ms ease;
}

.variations_form .te-vb__button:hover:not(:disabled) {
	border-color: var(--te-vb-border-active);
}

.variations_form .te-vb__button:focus-visible {
	outline: 2px solid var(--te-vb-focus);
	outline-offset: 3px;
}

.variations_form .te-vb__button.is-active {
	border-color: var(--te-vb-border-active);
	background: var(--te-vb-bg-active);
	color: #ffffff;
	box-shadow: 0 0 0 1px var(--te-vb-border-active);
}

.variations_form .te-vb__button:disabled,
.variations_form .te-vb__button.is-disabled {
	background: var(--te-vb-bg-disabled);
	color: var(--te-vb-text-muted);
	cursor: not-allowed;
	text-decoration: line-through;
	opacity: 0.68;
}

@media (max-width: 767px) {
	.variations_form .te-vb {
		gap: 8px;
	}

	.variations_form .te-vb__button {
		flex: 1 1 calc(50% - 8px);
		min-width: 0;
		min-height: 46px;
		padding-inline: 12px;
		font-size: 15px;
	}
}
