@media screen and (min-width: 865px) {
	.overlay-search {
		display: none;
	}
}
#search-button-icon {
	width: 1.1rem;
	height: 1.1rem;
	background-color: transparent;
	background-image: url('../images/magnifier.png');
	background-repeat: no-repeat;
	background-size: cover;
  position: absolute;
	right: 110px;
	top: 27px;
}
.admin-bar #search-button-icon {
	top: 72px;
}
#search-button-icon a {
	display: block;
	width: 100%;
	height: 100%;
}
/* --------- */
body.overlay-search-visible {
	overflow: hidden;
}
.overlay-search {
	display: none;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	opacity: 0;
	position: fixed;
	width: 100%;
	height: 100%;
	min-height: 600px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow-y: auto;
}
.overlay-search.show-search {
	display: flex;
	opacity: 1;
	background-color: rgba(0, 161, 192, 0.65);
	z-index: 99999;
}
.overlay-search .container {
	max-width: 800px;
	width: 100%;
	padding: 3.2rem 2rem;
	margin: 0 auto;
}
.overlay-search h2 {
	text-align: center;
	margin-top: 0;
	margin-bottom: 2rem;
}
.overlay-search .search-field {
	width: 100%;
	box-shadow: none;
	padding: 1.5em 0.75em;
	margin: 0;
	border: 0;
	border-radius: 50px;
}
.overlay-search .search-field:focus {
	outline: none;
}
.overlay-search .search-form {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 5;
	background-color: #fff;
	border-radius: 18px;
}
.overlay-search .search-form label .search-field {
	margin: 0;
}
.overlay-search .search-form .search-submit {
	background-image: url('../images/search.svg');
	background-repeat: no-repeat;
	background-size: 50%;
	background-position: center;
	display: inline-block;
	vertical-align: middle;
	font-family: inherit;
	padding: 0.85em 1em;
	border-radius: 0;
	text-align: center;
	cursor: pointer;
	color: transparent;
	font-size: 0.8rem;
	background-color: transparent;
	margin: 0;
	width: 80px;
	height: 50px;
	top: 0px;
	right: 0px;
	transform: scaleX(-1);
}
.overlay-search .search-form .search-submit:focus {
	outline: dashed 1px #007cba;
	outline-offset: 1px;
}
