/* # Search
---------------------------------------------------------------------------------------------------- */

.search-toggle::after {
	background: url("../../images/icon-search.png") center no-repeat;
	background-size: 20px 20px;
	content: '';
	display: block;
	filter: grayscale(100%) brightness(2);
	height: 32px;
	left: 50%;
	cursor: pointer;
	padding-left: 25px;
	padding-right: 25px;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
	transition: all 0.2s ease-in-out;
	width: 32px;
}

.search-toggle:hover::after {
	filter: grayscale(0) brightness(1);
}

.search-toggle a {
	position: relative;
	text-indent: -9999px;
}

.fa-search:before {
	float: right;
}

.fa-search {
	color: #4d4d4d;
	font-size: 17px;
	font-weight: 700;
}

.fa-search:after {
	color: #4d4d4d;
	font-family: 'Open Sans Condensed', 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 700;
	padding-right: 5px;
}

.search-toggle:hover .fa-search,
.search-toggle:hover .fa-search:after {
	color: #fff;
}

.search-box-wrapper {
	background: rgba(13,141,204,0.85);
	box-shadow: 0 1px 2px rgba(0,0,0,0.25);
	display: none;
	position: absolute;
	width: 100%;
	z-index: 999;
}

.search-box {
	float: right;
	padding: 20px 0;
	max-width: 100%;
	text-align: right;
	width: 600px;
}

.search-box input {
	margin: 0 !important;
	min-width: 0;
	padding: 10px 15px;
	vertical-align: top;
}

.search-box input[type="search"] { 
	margin-right: 2% !important;
	width: 70%;
}

.search-box input[type="submit"] { 
	background-color: transparent;
	border: 1px solid #fff;
	color: #fff;
	padding: 12px 15px;
	width: 25%;
}

.search-box input[value="Search"]:hover {
	background-color: #fff;
	border: 1px solid #fff;
	color: #414042;
}

/* Text meant only for screen readers - from UnderScores */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	right: 0;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

@media screen and (max-width: 500px) {
	
	.search-toggle {
		DISPLAY: BLOCK;
	}
	
}