.search-container {
    width: 100%;
    margin-right: 10px;
    background-color: rgba(255,255,255, 0.9);
    border-radius: 5px;
    padding: 10px;
    position: relative;
}

.search-container.no-background {
    background-color: unset;
}

.search-form {
    position: relative;
    background-color: white;
}

.search-form input {
    display: inline-block;
    min-height: 40px;
    width: 100%;
    font-size: 14px;
    line-height: 1.8;
    padding: 6px 12px;
    vertical-align: middle;
    background-color: transparent;
    color: #333;
    border: 1px solid #ddd;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.search-button {
    display: inline-block;
    font-family: inherit;
    background-color: #13aff0;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 0px 5px 5px 0px;
    position: absolute;
    right: 0;
    height: 40px;
    text-transform: uppercase;
    margin: 0;
    padding: 14px 20px;
    border: 0;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.1em;
    line-height: 1;
}

/* .feature-location-container {
    width: 90%;
} */

.suggestion-dialog {
    background-color: white;
    border: 1px solid #ddd;
    width: 100%;
	max-height: 300px;
	overflow: auto;
    z-index: 99;
    position: absolute;
    top: 49px;
}

.articles,
.secondhand,
.firsthand,
.no-result {
    display: flex;
    flex-direction: column;
}

.search-group-title {
	line-height: 30px;
    height: 30px;
	padding: 0px 10px;
	color: rgba(0,0,0,.54);
}


.suggestion {
	min-height: 40px;
	line-height: 40px;
    padding: 0px 20px;
    border-bottom: 1px solid #ddd;
}