.site-search {
    position: relative;
    max-width: 550px;
    margin: 0;
}

.custom_search {
    position: relative;
}

.search_form_custom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.search_form_custom input[type="text"] {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 2px 0 0 2px;
}

.search_form_custom .select_custom {
    position: relative;
    flex-basis: 150px;
    margin-left: -1px;
}

.select_custom::before, .select_custom::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.select_custom::before {
    left: 10px;
    border: 5px solid transparent;
    border-top-color: #333;
}

.select_custom::after {
    right: 10px;
    border: 1px solid #ccc;
    width: 1em;
    height: 1em;
}

.select_custom select {
    width: 100%;
    padding: 10px;
    border-radius: 0;
    appearance: none;
    background: none;
    position: relative;
    z-index: 1;
	margin-bottom: 0 !important;
}

.search_form_custom button {
    padding: 10px 20px;
    border: none;
	background-color: white;
    color: #000b40;
    border-radius: 0 2px 2px 0;
    cursor: pointer;
    transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out;
    min-width: 120px;
	font-weight: 500;
    border: 1px solid #d4eb8e !important;
}

.search_form_custom button:hover {
    background-color: #000b40;
    color: #ffffff;
	border: 1px solid #000b40 !important;
}

.search_form_custom button .search-icon::before {
    content: '\e803';
    display: inline-block;
    margin-left: 10px;
    font-family: 'entypo-fontello';
    text-decoration: none;
    font-size: 15px;
	width: 20px;
	transition: transform 0.3s ease;
}

.search_form_custom button:hover .search-icon::before {
    content: '\e87d';
	transform: translateX(3px);
}

.search-entry {
    display: flex;
    align-items: start;
    margin-bottom: 20px;
}

.search-entry-thumb {
    margin-right: 20px;
}

.search-entry-content {
    flex: 1;
}


