/** custom size of input **/
.facetwp-type-autocomplete {
width: 571px; /** desired width of input + width of submit buton **/
max-width: 100%; /** for responsive **/
margin-left: auto;
margin-right: auto; /** remove these 2 margins to remove centering **/
position: relative; /** allows the dropdown to use 100% as size **/
}
.facetwp-autocomplete {
width: calc(100% - 71px); /** leaves space for width of button **/
}
.fcomplete-wrap {
width: calc(100% - 71px); /** match input size **/
max-width: 100% !important; /** for responsive **/
min-width: 100px !important;
}