.postcode-lookup__address-box {
    border: solid 1px #222;
    height: 250px;
    width: 100%;
    overflow-y: scroll;
    margin-top: 20px;
    background-color: white;
}
.postcode-lookup__address {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}
.postcode-lookup__address:hover {
    background-color: #eee;
}
.postcode-lookup__address-text {
    font-size: 14px;
    font-weight: bold;
    margin-top: 0 !important;
}
.postcode-lookup__loading-message {
    margin-top: 10px;
    font-weight:bold;
    font-size: 16px;
}
@media only screen and (max-width: 480px)  {
    .postcode-lookup__search-input {
        width: 100% !important;
        float: none !important;
    }
    .postcode-lookup__find-address-button-cont {
        float: left;
        width: 100%;
        margin-top: 15px;
    }
}

.postcode-lookup__error-text {
    color: red;
}

.postcode-lookup__buttons {
    float: left;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

@media only screen and (min-width: 481px) {
    .postcode-lookup__button-manual {
        margin-left: 15px;
    }
}