/**** search result ****/
.search-form {
/*	background: var(--background-footer);*/
	padding: 2rem;
/*	border-radius: 1rem 1rem 0 0;	*/
}
.search-form details {
    border: 0;
    border-top: 1px solid var(--linkhover);
    border-bottom: 1px solid var(--linkhover);
    margin: 2rem 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.search-form details .details-title {
	text-transform: uppercase;
}
.search-form fieldset legend, 
.search-form fieldset legend span {
    color: var(--whiteLight);
    font-family: 'notesesareg';
    font-size: 1.4rem;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
}
.search-form .form-checkboxes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.search-form .form-checkboxes .js-form-item {
    width: 33%;
    display: flex;
	flex-direction: row;
    align-items: baseline;
}
@media only screen and (max-width: 767px) {
	.search-form .form-checkboxes .js-form-item {
	    width: 48%;
	    display: flex;
	}
}
@media only screen and (max-width: 500px) {
	.search-form .form-checkboxes .js-form-item {
	    width: 100%;
	    display: flex;
	}
}
.search-form .form-checkboxes .js-form-item .form-control.form-checkbox {
    width: 1.4rem;
    height: 1.4rem;
    position: relative;
    top: 4px;
    background: rgba(40,40,40,0.2);
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid var(--linkhover);
    border-radius: 0;
    margin: 0 6px 0 0;
}
.search-form .form-checkboxes .js-form-item .form-control.form-checkbox:checked {
    background: var(--aquamarine);
}
.search-form  label {
    font-weight: normal;
    font-size: 1rem;
    color: var(--white);
    text-transform: capitalize;
    margin: 0;
}




.search-results {
	list-style: none;
	margin: 0;
    padding: 0;	
} 
.search-results li {
	list-style: none;
	border-bottom: 1px solid var(--linkhover);
    margin-bottom: 1rem;
}
.search-results li h3 a {
	color: var(--aquamarine);
	text-transform: uppercase;
}
.item-list ul li {
    list-style: disc;
}
.collapse-processed > summary:before {
	display: none;
}
