/*------------------------------------------*/
/*	    Search
/*------------------------------------------*/
.search-overlay {
	background-color: rgba(0, 0, 0, 0.8);
	height: 100%;
	left: 0;
	opacity: 0;
	position: fixed;
	text-align: center;
	top: 0;
	transition: all 0.25s ease-in-out 0s;
	visibility: hidden;
	width: 100%;
	z-index: 99;
}
.search-overlay.open {
    visibility: visible;
    opacity: 1;
}
.close-search {
	color: #ffffff;
	cursor: pointer;
	font-size: 50px;
	position: absolute;
	right: 30px;
	top: 100px;
	z-index: 99;
}
.search_wrap {
	left: 0;
	margin: 0 auto;
	max-width: 80%;
	position: absolute;
	right: 0;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.search_icon {
	position: absolute;
	right: 15px;
	top: 20px;
	border: 0;
	background-color: transparent;
	cursor: pointer;
	padding: 0;
}
.search_wrap .form-control {
	border-radius: 0;
	padding: 20px;
	border: 0;
	box-shadow: none;
	height: auto;
}
.search_wrap .form-control:focus {
	border: 0;
	box-shadow: none;
}
.search_box {
	position: relative;
}
.search_box input {
	padding-right: 30px;
}
.search_box button {
	border: 0;
	padding: 0 10px;
	background-color: transparent;
	font-size: 22px;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	cursor: pointer;
}
.search_form input {
    padding: 15px;
	height: auto;
}
.search_form .search_icon {
    top: 0;
    right: 0;
    padding: 5px 15px;
}
a.search_trigger i, a.search_trigger svg {
	/* font-size: 23px; */
}