.autoComplete_result {
    margin: 0.15rem auto;
    padding: 0.6rem;
    max-width: 280px;
    border: 0.05rem solid #e3e3e3;
    list-style: none;
    text-align: left;
    font-size: 1.1rem;
    color: rgb(123, 123, 123);
    /* text-transform: capitalize; */
    transition: all 0.1s ease-in-out;
    background-color: #fff;
    /* white-space: normal; */
}

.autoComplete_result:first-letter {
    text-transform: capitalize;
}

.autoComplete_result::selection {
    color: rgba(#ffffff, 0);
    background-color: rgba(#ffffff, 0);
}

.autoComplete_result:last-child {
    border-radius: 0 0 1rem 1rem;
}

.autoComplete_result:hover {
    cursor: pointer;
    background-color: rgba(255, 248, 248, 0.9);
    border-left: 2px solid rgba(255, 122, 122, 1);
    border-right: 2px solid rgba(255, 122, 122, 1);
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
}

.autoComplete_result:focus {
    outline: none;
    background-color: rgba(255, 248, 248, 0.9);
    border-left: 2px solid rgba(255, 122, 122, 1);
    border-right: 2px solid rgba(255, 122, 122, 1);
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
}

.autoComplete_highlighted {
    opacity: 1;
    color: rgba(255, 122, 122, 1);
    font-weight: bold;
}

.autoComplete_highlighted::selection {
    color: rgba(#ffffff, 0);
    background-color: rgba(#ffffff, 0);
}

@media only screen and (max-width: 600px) {
    .autoComplete_result:first-child {
        border-radius: 1rem 1rem 0 0;
    }
    .autoComplete_result:last-child {
        border-radius: 0 0 1rem 1rem;
    }
    .autoComplete_result:only-child {
        border-radius: 1rem;
    }
}

#geoitem-search {
    position: relative;
}

#result_List {
	position: absolute;
	width: 100%;
	background: #FFF;
	z-index: 10;
	box-shadow: 2px 2px 20px -14px #595959;
	max-height: 320px;
	overflow: auto;
    z-index: 150;
	margin: 0 !important;
	padding: 0 !important;
}

#result_List .autoComplete_result {
	max-width: 100%;
	margin: 0;
	padding: 0;
	border: none;
	border-bottom: thin solid #e3e3e3;
	font-size: 17px;
}

#result_List .autoComplete_result:last-child {
	border-radius: 0;
}

#result_List .autoComplete_highlighted {
	opacity: 1;
	color: #227b3c;
	font-weight: bold;
}

#result_List a {
	color: #313131;
	text-decoration: none;
	width: 100%;
	padding: 10px;
	display: inline-block;
}

#result_List .autoComplete_result:hover {
	cursor: pointer;
	border: none;
	border-bottom: thin solid #e3e3e3;
	background-color: #006e9a;
}

#result_List .autoComplete_result:hover a {
	color: #fff;
}

#result_List .autoComplete_result:hover .autoComplete_highlighted {
	color: rgb(248, 178, 178);
}