.search-page form {
	display: flex;
	justify-content: space-between;
	position: relative;
	width: 100%;
}

.search-page select {
	width: calc(30% - 10px);
	height: 60px;
	outline: none;
	border: 0;
	background: #F2F5F8;
	padding-right: 20px;
	font-weight: 600;
	font-size: 18px;
	padding-left: 20px;
	border-radius: 5px;
	display: inline-block;
}

.search-page .search-page-ico {
	width: 16px;
	height: 16px;
	background: url(img/search-ico-menu.svg) no-repeat;
	background-size: 16px !important;
	position: absolute;
	left: 32px;
	top: 22px;
	margin: auto;
	border: 0;
	outline: none;
	bottom: initial;
	transition: 0.2s ease;
}

.search-page .search-page-ico:active,
.search-page .search-page-ico:focus,
.search-page .search-page-ico:hover {
	opacity: 0.4;
}

small, .small {
    font-size: 15px !important;
    font-weight: 500 !important;
}

@media (max-width: 992px) {
	.search-page form {
		flex-wrap: wrap;
	}

	.search-page select {
		width: 100%;
	}

	.search-page .search-page-ico {
		left: initial;
		right: 0;
		top: 0px;
		width: 60px;
		height: 60px;
		background-size: 22px !important;
		padding: 0;
		background-position: center !important;
	}

}