/** CSS for search */
/** Sample selectors:
.search.show-item { }
.search.show-item .title { }
.search.list-items { }
*/
.search.show-item ul {
	padding: 20px 0;
}
.search.show-item ul li {
	margin:10px 0 18px;
}
.search.show-item .header, .search.show-item .title { 
	font-weight:bold;
}
.search.show-item .prev-next-container a:hover {
	text-decoration:underline;
}

header#main-header div.searchbox {
	width: calc(50% - 29px);
	float: right;
	box-shadow: none;
	background-color: white;
	margin-top: 11px;
	margin-right: 1px;
}

header#main-header div.searchbox form {
	height: 42px;
	font-size: 15px;
	line-height: 20px;
	position: relative;
	font-family: "Source Sans Pro",sans-serif;
	font-size: 1rem;
	font-weight: 400;
}
header#main-header div.searchbox input[type="text"] {
	display: block;
	box-sizing: border-box;
	width: 100%;
	padding: 8px 150px 8px 12px;
	border: 1px solid #d5d5d5;	
	border-radius: 4px;	
	background-color: transparent;
	line-height: 24px;
	box-sizing: border-box;
	height: 42px;
	font-size: inherit;
	font-family: inherit;
	
}
header#main-header div.searchbox input[type="text"]:focus {
	outline: none;
	border: 1px solid #0e4ea7;
}
header#main-header div.searchbox .search-site {
	position: absolute;
	top: 8px;
	right: 50px;
	height: 24px;
	line-height: 24px;
}
header#main-header div.searchbox .search-site label input {
	margin: 0px 3px 0px 5px;
	vertical-align: -3px;
	width: 18px; /* note: on Firefox radio-buttons are not stylable, so for uniformity set Chrome design to FF design */
	height: 18px;
}

header#main-header div.searchbox button {
	display: block;
	position: absolute;
	top: 7px;
	bottom: -4px;
	right: 9px;
	padding: 2px 0px 2px 7px;
	box-sizing: content-box;
	height: 24px;
	width: 24px;
	background-color: transparent;
	border: none;
	border-left: 1px solid #d5d5d5;
	cursor: pointer;
	color: #575759;
}

header#main-header div.searchbox-toggle button {
	display: block;
	position: absolute;
	top: 10px;
	right: 59px;
	padding: 9px;
	box-sizing: border-box;
	height: 42px;
	width: 42px;
	background-color: transparent;
	border: 1px solid #1f1d21;
	color: #1f1d21;
	cursor: pointer;
}

header#main-header div.searchbox-toggle button svg,
header#main-header div.searchbox button svg {
	height: 100%;
	width: 100%;
	fill: currentColor;
}

body#body#body.searchbox-visible .searchbox {
	position: absolute;
	display: block;
	z-index: 1;
	left: 0;
	right: 110px;
	width: auto;
}

body#body#body.searchbox-visible .searchbox-toggle button svg {
	display: none;
}
body#body#body.searchbox-visible .searchbox-toggle button::after {
	content: 'X';
	font-size: 24px;
	line-height: 24px;
}
