/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

body.accessible_overlay_search_overlay-search-visible {
	overflow: hidden;
}

.accessible_overlay_search_custom-search {
	background-color: transparent;
}

.accessible_overlay_search_overlay-search {
	display: none;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	max-width: 100% !important;
	width: 100%;
	opacity: 0;
	position: fixed;
	height: 100%;
	min-height: 600px;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	bottom: 0;
	overflow-y: auto;
}

.accessible_overlay_search_overlay-search.accessible_overlay_search_show-search {
	display: flex;
	opacity: 1;
	background-color: rgba(0, 0, 0, 0.57);
	z-index: 99999;
}

.accessible_overlay_search_container {
	position: relative;
	max-width: 800px;
	width: 100%;
	padding: 3.2rem 2rem;
	margin: 0 auto;
}

.accessible_overlay_search_search-form label {
	width: 100%;
}

.accessible_overlay_search_search-field {
	width: 100%;
	box-shadow: none;
	padding: 1.5em .75em;
	margin: 0;
	border: 0;
	border-radius: 50px;
}

.accessible_overlay_search_search-form label .search-field {
	margin: 0;
}

.accessible_overlay_search_search-form {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 5;
	background-color: #fff;
	border-radius: 50px;
}

.accessible_overlay_search_search-field {
	width: 100%;
	box-shadow: none;
	padding: 1.5em .75em;
	margin: 0;
	border: 0 !important;
	border-radius: 50px !important;
}

.accessible_overlay_search_search-field:focus {
	outline: 0 !important;
}

#accessible_overlay_search_custom-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: .85em 1em;
	border-radius: 0;
	text-align: center;
	cursor: pointer;
	border: 0 !important;
	color: transparent;
	font-size: 0.8rem;
	background-color: transparent;
	margin: 0;
	width: 80px;
	height: 50px;
	top: 15px;
}

#accessible_overlay_search_custom-search-submit:focus {
	outline: 1px solid #CE7851;
}

.accessible_overlay_search_search-form .search-submit:hover {
	transform: scale(1); 
	background-image: url('images/search-white.svg');
}

.accessible_overlay_search_search-button {
	display: inline-block;
	background-image: url('images/search.svg');
	background-repeat: no-repeat;
	background-size: 50%;
	background-position: center;
	width: 80px;
	height: 50px;
}

.accessible_overlay_search_search-button:focus {
	background-color: transparent !important;
}

.accessible_overlay_search_close-search {
	background-image: url('images/close.svg');
	background-color: white;
	border-radius: 50%;
	display: flex;
	font-weight: 600;
	font-size: 20px;
	border: 0;
	width: 30px;
	height: 30px;
	align-items: center;
	justify-content: center;
	position: relative;
	float: right;
	right: 10px;
	top: -3.5rem;
	padding: 20px;
}

.accessible_overlay_search_close-search:focus {
	outline: 1px solid white;
}

@media (max-width: 500px) {
	.accessible_overlay_search_search-field {
		padding: 2px !important;
	}

	.accessible_overlay_search_container {
		padding: 0 1rem;
	}

	.accessible_overlay_search_close-search {
		top: -50px;
		padding: 20px;
	}
}



