#searchfield form .biginput {
    background-color: #fff;
    border: 1px solid #c8c8c8;
    border-radius: 3px;
    color: #aeaeae;
    font-weight: normal;
    height: 40px;
    padding: 0 10px;
    transition: all 0.2s linear 0s;
    width: 400px;
    display: inline;
}

input, textarea {
    box-sizing: border-box;
    outline: medium none;
}

*::-moz-placeholder {
    color: #ccc;
    font-style: italic;
}

*::-moz-selection {
    background: #a4dcec none repeat scroll 0 0;
}

#autocompleteMessage {
	display: none;
}

.autocomplete-suggestions { border: 1px solid #999; background: #fff; cursor: default; overflow: auto; }
.autocomplete-suggestion { padding: 10px 5px; font-size: 1.2em; white-space: nowrap; overflow: hidden; }
.autocomplete-selected { background: #f0f0f0; }
.autocomplete-suggestions strong { font-weight: normal; color: #3399ff; }

@media screen and (max-width: 736px) {
	#searchfield form .biginput {
    background-color: #fff;
    border: 1px solid #c8c8c8;
    border-radius: 3px;
    color: #aeaeae;
    font-weight: normal;
    height: 40px;
    padding: 0 10px;
    transition: all 0.2s linear 0s;
    width: 200px;
    display: inline;
}
}