@media (max-width: 768px) 
{
	#extended_search_form 
	{
		display: none;
	}
	#extended_search_form.is-open 
	{
		display: block;
	}

	#toggle::after 
	{
		content: ' \25BC'; 
		float: right;
	}
	#toggle.active::after 
	{
		content: ' \25B2';
	}
}

@media (min-width: 769px) 
{
    div#extended_search
	{
        display: grid;
        grid-template-columns: 1fr 4fr;
        grid-gap: 16px;
    }
}

div#search_bar 
{
    background-color: rgba(0, 117, 29, 0.1);
    border-radius: 10px;
    padding: 24px;
	margin-bottom: 16px;
}

input[type="text"] 
{
	border-radius: 40px;
    color: var(--third);
    font-weight: 600;
    margin-bottom: 16px;
	width: 100%;
}

div#count
{
    margin-top: 16px;
    font-weight: 600;
}

/* Ergebnisse */

div#results 
{
	margin-bottom: 16px;
}

@media (min-width: 769px) 
{
    div#results 
	{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-gap: 8px;
    }
}

@media (max-width: 768px)
{
    div#results
	{
        display: grid;
        grid-template-columns: 2fr 2fr;
        grid-gap: 8px;
    }
}

.conditional_mount 
{
    margin-top: 16px;
}

input#min_alt_slider 
{
    width: 100%;
    -webkit-appearance: none;
	appearance: none;
    background: #ccc;
    border-radius: 10px;
}

#min_alt_slider::-webkit-slider-thumb 
{
	-webkit-appearance: none;
	appearance: none;
	width: 15px;
	height: 15px;
	background: var(--first);
	cursor: pointer;
	border-radius: 12px;
}

#min_alt_slider::-moz-range-thumb 
{
	width: 15px;
	height: 15px;
	background: var(--first);
	cursor: pointer;
	border-radius: 12px;
}

.search_element 
{
    font-size: 18px;
    text-align: center;
    background-color: rgba(0, 117, 29, 0.1);
    border-radius: 10px;
    padding: 0px 0px 8px 0px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: fit-content;
	max-height: 200px;
}

@media (max-width: 768px)
{
    .search_element 
	{
        max-width: 164px;
    }
}

@media (min-width: 769px)
{
    .thumbnail_pic
	{
        height: 164px;
    }
}

@media (max-width: 768px) 
{
    .thumbnail_pic
	{
        height: 128px;
    }
}

.thumbnail_pic
{
    border-radius: 10px;
    margin: 0px;
    object-fit: cover;
    transition: opacity 0.25s;
}

.thumbnail_pic:hover
{
    opacity: 0.85;
}