.search-page-layout
{
	display: flex;
}
.search-page-layout > *
{
    padding-left: 1rem;
    padding-right: 1rem;
}
.search-page-layout > *:first-child
{
	margin-left: auto;
	padding-left: 2rem;
}
.search-page-layout > *:last-child
{
	margin-right: auto;
	padding-right: 2rem;
}
.search-result-container
{
	width: 100%;
	max-width: 1200px;
}

.filter-wrapper
{
	box-shadow: 4px 4px 10px 1px rgba(0,0,0,0.1);
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
    max-width: 600px;
}
.filter
{
	background-color: #ffffff;
	padding: 20px;
	width: 310px;
}
.filter-input
{
	width: 100%;
	font-size: 0.9rem;
}
.filter-and-sign
{
	align-self: center;
	padding: 4px;
}
.filter hr
{
	color: #dddddd;
	background-color: #dddddd;
	border: 1px solid #dddddd;
	margin: 20px 0px;
}

.filter-toggle-button-wrapper
{
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 0.5rem;
}
.filter-toggle-button
{
	padding: 0.7rem 1rem;
	border: 1px solid #aaa;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
	font-weight: bold;
	cursor: pointer;
}
.filter-toggle-button > svg
{
	width: 1.5rem;
}
.filter-toggle-button_selected
{
	border: 1px solid #ff7e00;
	background-color: #ffe7cf;
}

.selected-filters
{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.selected-filters > *
{
    margin-right: 10px;
	margin-bottom: 10px;
}
.selected-filters-label
{
    color: #6e6e6e;
    font-weight: 700;
}