/* Anubis Variation Pills — colours follow the theme (works on the dark Basel skin). */
form.variations_form table.variations select.anubis-pills-src {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
	pointer-events: none !important;
	margin: 0 !important;
	overflow: hidden;
	clip: rect(0 0 0 0);
}
form.variations_form table.variations td.value {
	position: relative;
	text-align: left;
}
form.variations_form table.variations tr .label,
form.variations_form table.variations tr th.label {
	display: none;
}
form.variations_form table.variations td.value .anubis-pills-head {
	margin: 0 0 10px;
	font-size: 16px;
	line-height: 1.4;
	color: #f2f2f2;
	text-align: left;
	text-transform: none;
}
form.variations_form table.variations td.value .anubis-pills-label {
	font-weight: 700;
	color: #f2f2f2;
}
form.variations_form table.variations td.value .anubis-pills-value,
form.variations_form table.variations td.value .anubis-pills-sep {
	font-weight: 400;
	color: #f2f2f2;
}
.anubis-pills {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 10px 12px;
	padding: 0 0 8px;
	text-align: left;
}
.anubis-pill,
.anubis-pill:focus,
.anubis-pill:active {
	display: inline-block;
	box-sizing: border-box;
	margin: 0;
	padding: 9px 18px;
	min-width: 64px;
	border: 1px solid #555;
	border-radius: 999px;
	background: #1c1c1c;
	color: #f2f2f2;
	font-family: inherit;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.3;
	text-align: center;
	text-transform: none;
	letter-spacing: 0;
	box-shadow: none;
	cursor: pointer;
	transition: border-color .12s, background-color .12s, color .12s;
}
.anubis-pill:hover {
	border-color: #bbb;
	background: #262626;
	color: #fff;
	box-shadow: none;
}
.anubis-pill:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}
.anubis-pill.is-selected,
.anubis-pill.is-selected:hover,
.anubis-pill.is-selected:focus {
	border: 2px solid #fff;
	padding: 8px 17px;
	background: #fff;
	color: #111;
	font-weight: 600;
}
/* Out of stock: crossed out, greyed, not clickable */
.anubis-pill.is-out,
.anubis-pill.is-out:hover,
.anubis-pill.is-out:focus {
	color: #777;
	border-color: #3a3a3a;
	background: #141414;
	text-decoration: line-through;
	text-decoration-thickness: 1.5px;
	cursor: not-allowed;
}
/* Combination does not exist for the other choices made */
.anubis-pill.is-hidden {
	display: none;
}
@media (max-width: 480px) {
	.anubis-pills { gap: 8px 8px; }
	.anubis-pill, .anubis-pill:focus, .anubis-pill:active { padding: 8px 14px; font-size: 14px; min-width: 56px; }
	.anubis-pill.is-selected, .anubis-pill.is-selected:hover, .anubis-pill.is-selected:focus { padding: 7px 13px; }
}
