.hide { display: none !important; }
.side-spacer { width: 128px; }

.wa-link {
	display: flex;
	justify-content: flex-end;
	margin: 0.5em;
}

.wa-link img {
	height: 100%;
}

.wa-img-container {
	height: 128px;
	padding: 0.25em;
	/*box-shadow: 1px 1px 3px #bbb;*/
}

.wa-link:hover .wa-img-container {
	/*box-shadow: 1px 1px 3px #666;*/
}

.form-control:focus-visible {
	z-index: 1;
	border-color: rgb(0, 0, 0);
	box-shadow: rgb(0 0 0) 0px 0px 0px 1px;	
}

.form-control:focus, .form-select:focus {
	z-index: 1;
	outline: none;
	/*border-color: rgb(0, 0, 0);*/
	border-color: #8b99a7;
	/*-webkit-box-shadow: none;*/
	/*box-shadow: none!important;*/
	box-shadow: #8b99a7 0px 0px 0px 1px !important;	
}

.content {
	width: 100%;
	margin-inline: auto;
	padding-inline-start: 0px;
	padding-inline-end: 0px;
	max-width: 450px;
	margin-bottom: 1em;
}

.page-header {
	display: flex;
	justify-content: space-between;
}

.page-title {
	margin-top: 40px;
	text-align: center;
	font-family: sans-serif;
	font-size: 35px;
	letter-spacing: 8px;
}

.flex-spacer {
	flex: 1 1 0%;
	place-self: stretch;
}

.filter-list {
	margin-top: 10px;	
	display: flex;
	/*justify-content: space-between;*/
	width: 100%;
}

.search-input {
	width: 100%;
}

.search-input span {
	border-right: 0px;
	background: transparent;
}

.search-input input {
	border-left: 0px;
}

.manufacturer-select {
	width: 80px;
}

.manufacturer-select select {
	padding: 0.75rem 1rem;
}

.target-audience-group .input-group label {
	padding: 0.75rem 1rem;
	border: 1px solid #ced4da;
}

.target-audience-group .input-group label:nth-child(2) {
	border-top-left-radius: 0.25rem !important;
	border-bottom-left-radius: 0.25rem !important;
}

.input-group-big > .input-group-text {
	color: #ced4da;
	padding: 0.5rem 1rem;
	font-size: 1.25rem;
	border-radius: 0.3rem;
}

.input-group-big > .form-control {
	padding: 0.75rem 1rem;
	border-radius: 0.3rem;
}

input[name="audience"] {
	display: none;
}

input[name="audience"]:checked + label {
	color: #eee;
	background: #212529;
}

.results {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	row-gap: 5px;
}

.search-result {
	border: 1px solid transparent;
	border-radius: 6px;
	margin-bottom:5px;
}

.search-result:hover {
	border: 1px solid #333;
}

.search-result a {
	color: #333;
	text-decoration: none;
}

.search-result a:hover {
	color: #333;
}

.search-result .result-content {
	width: 100%;
	height: 50px;
	/* background-color: #e5ddd2; */
	background-color: var(--result-background);
	color: var(--result-color);
	padding: 20px;
	border-radius: 6px;
	box-shadow: 1px 1px #eee;
}

.search-result:hover .result-content {
	box-shadow: 1px 1px #333;
}

.result-title {
	margin: 1px;
	line-height: 12px;
	font-weight: bold;
}

.result-name {
	margin: 1px;
	line-height: 28px;
}

.gender-label {
	padding: 1px 4px;
	color: white;
	background-color: #333;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 0.75em;
}

.label-men {
    background-color: rgb(185, 143, 92);
}

.label-women {
    background-color: rgb(154, 105, 78);
}

@media screen and (min-width: 48em) {
	.page-title {
		line-height: 1.2;
	}
}

@media screen and (min-width: 30em) {
	.content {
		max-width: 1200px;
	}
	
	.page-title {
		letter-spacing: 12px;
		font-size: 60px;
	}
	
	.manufacturer-select {
		width: 330px;
	}

	.search-input {
		width: 480px;
	}
	
	.search-result .result-content {
		width: 100%;
		height: 70px;
		padding: 21px;
	}
}

@media screen and (max-width: 30em) {
	.page-title {
		margin-top: 20px;
		letter-spacing: 0px;
	}
	
	.wa-img-container {
		height: 64px;
	}
	
	.filter-list {
		flex-direction: column;
	}
	
	.target-audience {
		margin-top: 10px !important;
		margin: auto;
	}
	
	.manufacturer-select {
		display: none;
	}
	
	.search-result .result-content {
		padding: 10px;
	}
	
	.result-title {
		font-size: 0.8em;
	}

	.result-name {
		font-size: 0.7em;
		line-height: 16px;
	}

	.gender-label {
		font-size: 0.7em;
	}
}

/*
	uebersicht
*/

.description-text {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	width: 700px;
}

.back-button {
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
}

.back-button .back-button-text {
	vertical-align: middle;
}

@media screen and (max-width: 30em) {
	.description-text {
		width: 280px;
	}
	
	.back-button button {
		padding: 3px 4px 6px 4px;
	}
	
	.back-button .back-button-text {
		display: none;
	}
	
}