/* Suche */

.vc-ajax-search-wrap {
	position: relative;		
	padding: 30px 40px;
	border-radius: 5px;	
	box-shadow: 0 0 30px #e1e8eb;
	border: 1px solid #c2c2c2;
	margin: 30px auto 75px;
	width: 80%;
	text-align: center;	
	background-color: #fff;
	z-index: 1;
}

.vc-ajax-search-input {
	width: 100%;
	padding: 10px 20px;
	font-size: 18px;
	border: 2px solid #0b7baf;
	border-radius: 5px;
	margin-top: 15px;
}

.vc-ajax-search-results {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	border: 1px solid #ddd;
	list-style: none;
	margin: 0;	
	padding: 0;	
	border-radius: 0 0 5px 5px;
	width: 99%;
	box-shadow: 0 20px 20px 0 rgb(0 0 0 / 17%);	
	overflow: hidden;
}

.vc-ajax-search-results li {	
	border-bottom: 1px solid #eee;
	list-style: none;
	padding-bottom: 0 !important;
}

.vc-ajax-search-results li:last-child {
	border-bottom: none;
}

.vc-ajax-search-results li a {
	text-decoration: none;
	color: #000;
	width: 100%;
	display: flex;
	justify-content: space-between;
  align-items: center;
	padding: 8px 20px;
	font-weight: 700;	
	text-align: left;		
}

.vc-ajax-search-results li a span:first-child {
	font-weight: 400;	
	width: 83%;
	text-align: left;
}

.vc-ajax-search-results li a span:first-child i {
	padding-right: 10px;
}

.vc-ajax-search-results li a:hover {
	background-color: #2f3a3f;
	color: #fff;
}

.vc-ajax-search-results li a span:last-child {
	font-size: 70%;
	font-weight: 400;
	background-color: #dee5eb;
	border-radius: 5px;
	padding: 2px 10px;
	width: 16%;
	min-width: 150px;
	text-align: center;
}

.vc-ajax-search-results li a:hover span:last-child {
	background-color: #dee5eb;
	color: #000;
}

.vc-ajax-search-results .vc-ajax-search-no-results {
	padding: 20px !important;
	font-weight: 700;
	color: #d64d34;
}

@media (max-width: 991px) {
	.vc-ajax-search-wrap {	
		padding: 20px 30px;				
		width: 100%;	
	}
	.vc-ajax-search-results li a {
		font-size: 16px;
		padding: 10px 15px;		
	}
	.vc-ajax-search-results li a span:last-child {
		font-size: 70%;
		font-weight: 700;
		background-color: #dee5eb;
		border-radius: 5px;
		padding: 2px 10px;
		width: 15%;
		min-width: 130px;
		text-align: center;
	}
}

@media (max-width: 600px) {
	.vc-ajax-search-wrap {	
		padding: 20px 15px;				
		width: 100%;	
	}
	.vc-ajax-search-results li a {
		font-size: 16px;
		padding: 10px 15px;		
	}	
	.vc-ajax-search-results li a {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: flex-start;		
	}
	.vc-ajax-search-results li a span:last-child {
		font-size: 70%;
		font-weight: 700;
		background-color: #dee5eb;
		border-radius: 5px;
		padding: 2px 10px;
		width: 15%;
		min-width: 130px;
		text-align: center;
	}
	.vc-ajax-search-results li a span:first-child {		
		width: 100%;
		text-align: left;
	}
	.vc-ajax-search-results li a span:last-child {
		font-size: 70%;
		font-weight: 700;
		background-color: #dee5eb;
		border-radius: 5px;
		padding: 4px 10px;
		width: 100%;
		min-width: 100%;
		text-align: left;
		margin-top: 5px;
	}
	.vc-ajax-search-results {
		width: 101%;
	}
}