.autocomplete-default {
    position: relative;
    .results {
        position: absolute;
        background-color: white;
        color: black;
        width: 100%;
        & > div {
            padding: 3px 20px;
            &:hover {
                background-color: $secondary-color;
                color: white;
                cursor: pointer;
            }
            &.selected {
                background-color: $secondary-color;
                color: white;
                cursor: pointer;
            }
        }
    }
}