

.searchwrapper {
	max-width: 800px;
	padding: 10px;
	margin: 0 auto;	
}
.searchwrapper h1 {
	text-align: center;
	padding-bottom: 20px;	
}

.searchwrapper form {
	display: block;
	padding: 40px;
	margin: 40px 0;
	border-radius: 2px;
	background: var(--light-brown);
}
.searchwrapper fieldset {
	position: relative;	
}
.searchwrapper fieldset + div {
	padding: 20px 20px 0 20px;
	text-align: center;	
}
.searchwrapper form input {
	border-radius: 25px;
    padding: 0 10px;
	width: 100%; 
}
.searchwrapper form button {
	display: block;
	width: 43px;
	height: 43px;
	border-radius: 50%;
	position: absolute;
	top: 3px;
	right: 3px;
	border: none;
	background: var(--light-brown);
	cursor: pointer;
}
.searchwrapper form button:hover {
	background: var(--orange);
}	
.searchwrapper form button svg {
	fill: var(--black);	
}
.searchwrapper form button:hover svg {
	fill: #FFF;	
}

.searchresult {
	display: grid;
	grid-template-columns: 100px 1fr;
	grid-gap: 10px;
	border-top: 1px solid var(--border-gray);
	padding: 30px 0;
}
li:first-child .searchresult {
	border-top: none;
	padding-top: 0;	
}
.searchresult .flagbanner {
	
	width: 100px;
	grid-area: 1 / 1 / 3 / 2;
}
.searchresult .flagbanner svg {
	vertical-align: bottom;
	border: 1px solid rgba(0,0,0,0.15);
}
.searchresult .banner {
	background: var(--light-brown);
	border: 1px solid rgba(0,0,0,0.15);
	width: 100px; 
	height: 100px;
	grid-area: 1 / 1 / 3 / 2;
	
}

.searchresult a {
	color: var(--orange);
}
.searchresult .title a {
	color: inherit;
	text-decoration: none;
}
.searchresult .title a:hover {
	color: var(--orange);	
}
.searchresult p {
	margin: 0;
	padding: 10px 0 0 0;	
}


.searchresult .where {
	padding: 0 0 10px 0;
	color: rgba(34,29,28,0.6);
}
.searchresult .usp {
    white-space: nowrap;
}
.searchresult.cpcarticle em,
.searchresult.park em {
	font-style: normal;
	margin-right: 12px;	
	display: inline-block;
}
.searchresult.cpcarticle p,
.searchresult.park p {
	padding: 0;	
}

.searchresult footer li {
	display: inline-block;
}
.searchresult footer li + li:before  {
	content: "•";
	display: inline-block;
	padding: 0 8px;	
}