.search-form {
	/*position: absolute;
    right: 36px; top: 0;
    width: 22px;*/
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1000;
	background: rgba(100, 100, 100, 0.6);
	display: none;
	-webkit-transition: 0.5s all;
	transition: 0.5s all;
	/*button {display: none;}*/
}
.search-form .search-form__container {
	height: 100%;
	display: -webkit-flex;
	-webkit-justify-content: center;
	-webkit-align-items: flex-start;
	/* -webkit-flex-direction: @direction;
    -webkit-flex-wrap: @wrap;*/
	display: -ms-flexbox;
	-ms-flex-align: center;
	-ms-flex-pack: center;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: flex-start;
	/*flex-direction: @direction;
    flex-wrap: @wrap;*/
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row initial;
	flex-flow: row initial;
}
.search-form .search-form__container__empty-field {
	display: inline-block;
	padding: 60px;
}
.search-form .container {
	max-width: 730px;
	width: 100%;
	margin: 0 auto;
	padding: 0;
	position: relative;
}
.search-form .close-btn {
	display: block;
	position: absolute;
	width: 45px;
	height: 45px;
	top: 14px;
	right: 30px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index: 1001;
	opacity: 1;
	cursor: pointer;
}
.search-form .close-btn:after {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background-color: #ffffff;
	margin-left: -1px;
	-webkit-transition: 0.5s all;
	transition: 0.5s all;
}
.search-form .close-btn:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 2px;
	background-color: #ffffff;
	margin-top: -1px;
	-webkit-transition: 0.5s all;
	transition: 0.5s all;
}
.search-form .close-btn:hover:after,
.search-form .close-btn:hover:before {
	background-color: #202c38;
}
.search-form .form-control {
	width: 100%;
	border: 1px solid #888b8d;
	background-color: #ffffff;
	color: #888b8d;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	padding: 0 70px 0 15px;
	height: 48px;
	font-size: 20px;
	font-weight: 300;
	-webkit-transition: 0.2s all;
	transition: 0.2s all;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}
.search-form .form-control::-webkit-input-placeholder {
	color: #888b8d;
	text-indent: 0;
	-webkit-transition: text-indent 0.3s ease;
	transition: text-indent 0.3s ease;
}
.search-form .form-control::-moz-placeholder {
	color: #888b8d;
	text-indent: 0;
	-webkit-transition: text-indent 0.3s ease;
	transition: text-indent 0.3s ease;
}
.search-form .form-control:-moz-placeholder {
	color: #888b8d;
	text-indent: 0;
	-webkit-transition: text-indent 0.3s ease;
	transition: text-indent 0.3s ease;
}
.search-form .form-control:-ms-input-placeholder {
	color: #888b8d;
	text-indent: 0;
	-webkit-transition: text-indent 0.3s ease;
	transition: text-indent 0.3s ease;
}
.search-form .form-control:focus::-webkit-input-placeholder {
	text-indent: 800px;
}
.search-form .form-control:focus::-moz-placeholder {
	text-indent: 800px;
}
.search-form .form-control:focus:-moz-placeholder {
	text-indent: 800px;
}
.search-form .form-control:focus:-ms-input-placeholder {
	text-indent: 800px;
}
.search-form button[type=submit] {
	position: absolute;
	right: -2px;
	top: 2px;
	height: 44px;
	width: 58px;
	text-align: center;
	line-height: 41px;
	background-color: transparent;
	color: #888b8d;
	border: 0;
	outline: none !important;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	cursor: pointer;
}
.search-form button[type=submit]:hover,
.search-form button[type=submit]:focus {
	color: #fb789a;
}
.is_blur {
	-webkit-filter: blur(8px);
	-moz-filter: blur(8px);
	-ms-filter: blur(8px);
	-o-filter: blur(8px);
	filter: blur(8px);
}
