.autocomplete-container {
    /* relative position for at de absolut positionerede forslag får korrekt placering.*/
    position: relative;
    width: 100%;
}

.autocomplete-container input {
    /* Både input og forslag får samme bredde som omkringliggende DIV */
    width: 100%;
    box-sizing: border-box;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.dawa-autocomplete-suggestions {
    margin: 0.3em 0 0 0;
    padding: 0;
    text-align: left;
    border-radius: 0.3125em;
    background: #fcfcfc;
    box-shadow: 0 1em 1em rgba(0,0,0,.5);
    position: absolute;
    left: 0;
    right: 0;
    z-index: 9999;
    overflow-y: auto;
    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-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;
}
.autocomplete-container {

}

button.remove-btn {
    background-color: transparent;
    color : #ff4d4d;
    border: 1px solid transparent;
    padding-top: 5px;
    cursor: pointer;
    border-radius: 5px;
}

button.remove-btn:hover,
button.remove-btn:active,
button.remove-btn:focus{
    border-color : #ff4d4d;
}

div.selected-addresses {
    padding: 0;
    margin-top: 15px;
    position: relative;
    transition: all 0.6s ease-out;
}

div.selected-addresses > div[id^="address-container-"] {
    background: #fff;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    opacity: 1;
    text-wrap-mode: nowrap;
    transition: all 0.6s ease-out;
    animation: appear 1s;
}
@keyframes appear {
    from {
        opacity: 0;
    }
}

.selected-addresses label {
    display: inline-block;
}
.selected-addresses button {
    font-weight: 700;
}

.autocomplete-container .search-icon{
    position: absolute;
    right: 12px;
    top: 30px;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 1em;
    opacity: 0.5;
}
