.produktbildersuche__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 auto;
	max-width: 700px;
	text-align: center;
}

.produktbildersuche__content .fieldset,
.produktbildersuche__input-wrapper {
	width: 100%;
}

.produktbildersuche__content .fieldset {
	margin-bottom: 16px;
}

/* .form .grid-cell .button / .form .fieldset .button in the site's form
   styles set align-self: flex-start (3-class specificity), which defeats
   this container's centering unless matched here. */
.form .produktbildersuche__content .button {
	align-self: center!important;
	margin-top: 1rem;
}

.produktbildersuche__input-wrapper input[type='text'] {
	border: 1px solid black;
}

.produktbildersuche__bubbles {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 15px 0 15px;
	min-height: 0;
	width: 100%;
}

.produktbildersuche__clear-all {
	background: none;
	border: 0;
	color: #647984;
	cursor: pointer;
	font-size: 13px;
	margin: 6px 0 15px;
	padding: 0;
	text-decoration: underline;
}

.produktbildersuche__clear-all[hidden] {
	display: none;
}

.produktbildersuche__bubble {
	align-items: center;
	background: #ececec;
	border-radius: 20px;
	display: inline-flex;
	font-size: 14px;
	gap: 6px;
	padding: 6px 12px;
}

.produktbildersuche__bubble button {
	background: none;
	border: 0;
	cursor: pointer;
	font-size: 16px;
	line-height: 1;
	margin-top: 0;
	padding: 0;
}

.produktbildersuche__spinner {
	display: inline-block;
	margin-top: 20px;
}

.produktbildersuche__spinner[hidden] {
	display: none;
}

.produktbildersuche__error {
	color: #c00808;
	margin-top: 15px;
}

.produktbildersuche__input-wrapper {
	position: relative;
}

.produktbildersuche__suggestions {
	background: #fff;
	border: 1px solid #ececec;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
	list-style-type: none;
	margin: 4px 0 0;
	max-height: 260px;
	overflow-y: auto;
	padding: 0;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 20;
}

.produktbildersuche__suggestions[hidden] {
	display: none;
}

.produktbildersuche__suggestions li {
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 10px 20px;
	text-align: left;
}

/* .section .grid-cell ul li in the site's base styles sets list-style-type:
   initial and margin-left: 20px at higher specificity (3 classes + 2 types) —
   the margin sits outside the hover background, leaving a gap on the left
   before it. Both need matching here to actually take effect. */
.produktbildersuche .produktbildersuche__content ul.produktbildersuche__suggestions li {
	list-style-type: none;
	margin-left: 0;
}

.produktbildersuche__suggestions li:hover,
.produktbildersuche__suggestions li:focus,
.produktbildersuche__suggestions li.is-active {
	background: #ececec;
}

.produktbildersuche__suggestion-id {
	font-size: 16px;
}

.produktbildersuche__suggestion-name {
	color: #647984;
	font-size: 13px;
}


.produktbildersuche__input-wrapper input {
  border: 1px solid black !important;
}

.produktbildersuche__content .input--check-radio {
	margin-top: 20px;
}

.produktbildersuche__content .button {
	margin-top: 20px!important;
}