.ptd-configurator__options {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin: 1rem 0;
}

.ptd-configurator__option {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .5rem;
	width: 140px;
	padding: 1rem;
	border: 2px solid #ddd;
	border-radius: 8px;
	background: #fff;
	cursor: pointer;
	text-align: center;
	font: inherit;
}

.ptd-configurator__option img {
	max-width: 64px;
	max-height: 64px;
}

.ptd-configurator__option:hover {
	border-color: #999;
}

.ptd-configurator__option.is-active {
	border-color: #2f7d32;
	background: #eef7ee;
}

.ptd-configurator__next,
.ptd-configurator__back {
	padding: .6rem 1.2rem;
	border: none;
	border-radius: 4px;
	background: #2f7d32;
	color: #fff;
	cursor: pointer;
}

.ptd-configurator__back {
	background: #999;
	margin-bottom: 1rem;
}
