.WkpSearch
	{
	width : 100%;
	margin : 20px 0px 60px 0px;
	
	border: solid 1px #d9d9d9;
	border-radius : 3px;
	
	justify-content : flex-end;
	align-items : center;
	}

.WkpSearchLeft
	{
	flex-grow : 1;
	}
	
.WkpSearchRight
	{
	height : 80px;
	align-items : center;
	cursor : pointer;
	}
	
.WkpSearchRight:hover
	{
	background-color : #f5f5f5;
	}
	
.WkpSearch input
	{
	width : 100%;
	height : 80px;
	
	font : normal 16px Montserrat,Calibri,sans-serif;
	color : #434343;
	
	padding : 0px 30px 0px 30px;
	border: solid 1px #ffffff;
	border-radius : 3px;
	}

.WkpSearch img
	{
	height: 25px;
	cursor : pointer;
	margin : 0px 30px 0px 30px;
	}
	
.WkpSearchResult
	{
	width : 100%;
	
	font : normal 16px Montserrat,Calibri,sans-serif;
	color : #434343;
	}
		
.WkpResultItem
	{	
	max-width : 300px;
	
	background-color : #f3f3f3;
	border-radius : 2px;
	line-height : 1.5em;

	padding : 10px;
	margin : 10px 15px 10px 15px;

	cursor : pointer;
	}
		
.WkpResultItem:hover
	{
	background : rgba(243, 243, 243, 0.5);
	}

	

/* Smartphone */
@media only screen and (max-width:480px)
	{		
	.WkpSearch
		{
		flex-wrap : nowrap;
		}
	
	.WkpSearchResult
		{
		justify-content : center;
		}
		
	.WkpResultItem
		{	
		max-width : 400px;
		}
		
	}

	
/* Tablet	*/	
@media only screen and (min-width:481px) and (max-width:800px)
	{
	}