article.search input {
    z-index: 1;
    min-width: 0;
}

article.search .results,
article.search .no-results {
    display: none;
}

article.search .results button {
    width: 100%;
    text-align: left;
}

article.search.no-results .no-results {
    display: initial;
    width: 100%;
    max-width: 100%;
}

article.search.no-results .no-results p {
    color: var(--grey);
}

article.search .results.has-results {

    display: initial;
    position: absolute;
    top: calc(4.5 * var(--unit));
    padding: 0;
    box-sizing: border-box;
    width: calc(100% - 13 * var(--unit));
    min-width: 50%;
    white-space: nowrap;
    overflow: hidden;
    box-shadow: 0 2px 6px -2px silver;
    border-radius: 2px;
    z-index: 100;

}

article.search .results button.choice {

    display: block;
    border: none;

}

article.search .results button.choice::after {

    display: none;

}

article.search .detail {

    width: 100%;
    max-width: 100vw;

}

article.search form {

    margin-bottom: calc(2 * var(--unit));
    flex-wrap: wrap;

}

footer {

    font-size: 0.7rem;
    text-align: center;
    padding: var(--unit);
    background-color: var(--darkblue);
    color: white;
    width: 100%;
    padding-bottom: calc(7 * var(--unit));
    box-sizing: border-box;

}

@media screen and (min-width: 1000px) {

    footer {

        position: fixed;
        bottom: 0;
        font-size: 1rem;
        padding-bottom: var(--unit);
        z-index: 9999;

    }

}
