.autocomplete-container {
    /* realtive position so the absolute positioned suggestions are placed correctly */
    position: relative;
    width: 100%;
}

.autocomplete-container input {
    /* Both input and suggestions get same width as enclosing div */
    width: 100%;
    box-sizing: border-box;
    min-width: 200px;
    margin: 5px;
    margin-bottom: 10px;
    padding: 10px 15px;
    background: #F7F7F7;
    border: 1px solid #ced4da
}

.dawa-autocomplete-suggestions {
    margin: 0.3em 0 0 0;
    padding: 0;
    text-align: left;
    border-radius: 0.3125em;
    background: #fcfcfc;
    box-shadow: 0 0.0625em 0.15625em rgba(0,0,0,.15);
    position: absolute;
    left: 0;
    right: 0;
    z-index: 9999;
    box-sizing: border-box;
}

.dawa-autocomplete-suggestions .dawa-autocomplete-suggestion {
    margin: 0;
    list-style: none;
    cursor: pointer;
    padding: 0.4em 0.6em;
    color: #333;
    border: 0.0625em solid #ddd;
    border-bottom-width: 0;
}

.dawa-autocomplete-suggestions .dawa-autocomplete-suggestion:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.dawa-autocomplete-suggestions .dawa-autocomplete-suggestion:last-child {
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
    border-bottom-width: 0.0625em;
}

.dawa-autocomplete-suggestions .dawa-autocomplete-suggestion.dawa-selected,
.dawa-autocomplete-suggestions .dawa-autocomplete-suggestion:hover {
    background: #f0f0f0;
}

.use-current-location {
    display: flex;
    background: none !important;
    border: none;
    padding: 0 !important;
    font-family: arial, sans-serif;
    color: #00806A;
    text-decoration: underline;
    cursor: pointer;
    font-weight: bold;
    margin-left: 5px;
}

.use-current-location img{
    margin-right: 10px;
}

.use-current-location-text {
    text-align: left;
}

.addressRadio {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 23.76px;
    width: 23.76px;
    min-width: 23.76px;
    border-radius: 50%;
    border: 1.76px solid #4A4742;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.addressRadio.addressRadioChecked {
    height: 25px;
    width: 25px;
    background-repeat: no-repeat;
    background-image: url("../images/icons/radio-button.svg");
    border: none;
}

.zipcode-input-field {
    width: 200px;
    box-sizing: border-box;
    margin: 5px;
    margin-bottom: 10px;
    padding: 10px 15px;
    margin-left: 35px;
    background: #F7F7F7;
    border: 1px solid #ced4da
}

.cpr-address-text-container {
    display: flex;
    flex-wrap: wrap;
}

.cpr-address-label {
    margin-right: 20px;
}

@media (max-width: 500px) {
    .cpr-address-text-container {
        flex-direction: column;
    }
    .cpr-address-label {
        margin-right: 0;
    }
}

.addressSelection {
    padding: 2px;
    width: fit-content;
    padding-right: 5px;
    display: flex;
}

.addressSelection:hover {
    cursor: pointer;
}

.addressLabel:hover {
    cursor: pointer;
}
