/**
 * Product Customizer storefront garment-size selection.
 *
 * Options-area Size control only. Selection is presentation state.
 */

.product-customizer-size-selection__panel {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	margin: 0 0 0.15rem;
	padding: 0.05rem 0 0.1rem;
	border: 0;
	background: transparent;
}

.product-customizer-size-selection__panel[hidden] {
	display: none;
}

.product-customizer-size-selection__empty {
	margin: 0;
	min-width: 0;
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.3;
	color: #1d2327;
}

.product-customizer-size-selection__choices {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 0.35rem;
	width: max-content;
	max-width: 100%;
	min-width: 0;
	margin-inline: auto;
	padding: 0.15rem 0;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.product-customizer-size-selection__choices::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

.product-customizer-size-selection__choice {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	min-width: 2.75rem;
	max-width: 7.5rem;
	min-height: 2.5rem;
	padding: 0.35rem 0.7rem;
	border: 2px solid #dcdcde;
	border-radius: 0;
	background: #fff;
	color: #1d2327;
	font: inherit;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}

.product-customizer-size-selection__choice.is-selected {
	border-color: #1d2327;
	background: #1d2327;
	color: #fff;
}

.product-customizer-size-selection__choice.is-unavailable,
.product-customizer-size-selection__choice[aria-disabled="true"] {
	opacity: 0.4;
	cursor: not-allowed;
	pointer-events: none;
	background: #f6f7f7;
	color: #646970;
	border-color: #dcdcde;
}

.product-customizer-size-selection__choice.is-unavailable.is-selected,
.product-customizer-size-selection__choice[aria-disabled="true"].is-selected {
	background: #f6f7f7;
	color: #646970;
	border-color: #dcdcde;
}

.product-customizer-size-selection__choice:focus {
	outline: 2px solid #2271b1;
	outline-offset: 2px;
}

.product-customizer-size-selection__choice-label {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	min-width: 0;
	overflow: hidden;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	white-space: normal;
	overflow-wrap: break-word;
}

.product-customizer-size-selection__toggle {
	appearance: none;
	-webkit-appearance: none;
	font: inherit;
	cursor: pointer;
}

.product-customizer-size-selection__toggle.is-open {
	border-color: #1d2327;
	background: #1d2327;
	color: #fff;
}

.product-customizer-size-selection__toggle:focus {
	outline: 2px solid #2271b1;
	outline-offset: 2px;
}

@media (min-width: 48em) {
	.product-customizer-size-selection__choice {
		min-width: 3rem;
		min-height: 2.75rem;
		padding: 0.4rem 0.8rem;
	}

	.product-customizer-size-selection__choice-label {
		font-size: 0.875rem;
	}
}
