a.search-page-params {
	border-bottom: 1px dashed blue;
	text-decoration: none;
}
div.search-page-params {
	margin-top: 6px;
}
.search-item-rate {font-size: 11px;}


.search-form {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 20px;
}

.search-form__input {
	flex: 1 1 auto;
}
.search-form__where {
	flex: 0 0 auto;
}
.search-form__btn {
	flex: 0 0 auto;
}


.search-form__input input {
	width: 100%;
    height: 50px;
    border: none;
    background: rgb(255, 255, 255);
    padding: 0 20px;
}
.search-form__where select {
	width: 120px;
}
.search-form__btn input {
	width: 150px;
	height: 50px;
	border: none;
	color: #fff;
	background: #0a1e5c;
	font-weight: 600;
}


/*dropdown*/


.search-form__where .prod-custom-select {
    position: relative;
    width: 120px;
	height: 50px;
}

.search-form__where .select-header {
    padding: 2px 10px 2px 10px;
    border-left: 1px solid #E2E2E2;
    border-right: 1px solid #E2E2E2;
	height: 50px;
    background: white;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: border-color 0.2s;
}

.search-form__where .select-header:hover {
    /* border-color: #4A75B5; */
}



.search-form__where .select-header .option-text {
    flex-grow: 1;
    color: #0F265C;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4em;
}

.search-form__where .select-header .arrow {
    border: solid #4A75B5;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(45deg);
    transition: transform 0.2s;
}

.search-form__where .prod-custom-select.open .arrow {
    transform: rotate(-135deg);
}

.search-form__where .options-list {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    background: white;
    /* margin-top: 5px; */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.search-form__where .options-list .option span {
    font-size: 12px;
    font-weight: 600;
    line-height: 14.63px;
}


.search-form__where .prod-custom-select.open .options-list {
    display: block;
}

.search-form__where .option {
    padding: 5px 10px 5px 10px;
	margin: 0;
	height: 40px;
    display: flex;
    align-items: center;
    cursor: pointer;
	text-decoration: none;
}
.search-form__where .option input {
	display: none;
}

.search-form__where .option:hover {
    background-color: #F4F8FE;
	text-decoration: none;
}























