.search-page {
    margin-top: 14px;
}

.search-page .search_form
{
	display:flex;
    padding-right: 15px;
}

.search-page .search_input
{
    z-index: 2;
    width: 100%;
    margin-bottom: 0;
    display: block;
    height: 50px;
    padding: 14px 20px;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    background-color: #ffffff;
    border-radius: 3px 0 0 3px;
    outline: none;
    box-shadow: none !important;
}

.search-page .search_input::placeholder {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
}


.search-page .search_button
{
    border: none;
    background: #194276;
    margin-bottom: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 3px 3px 0;
    width: 52px;
    height: 50px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

}

@media (max-width: 767px) {
    .search-page .search_form{
        padding-right: 0;
    }

}