@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:wght@700&display=swap');

* {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    line-height: 1.4em;
    font-size: 16px;
}

h1, h2, h3 {
    font-family: 'PT Serif', serif;
}

h1 {
    font-size: 34px;
    margin: .2em 0 .4em;
}

h3 {
    font-size: 24px;
    margin: .7em 0 .4em;
    padding-top: .7em;
    border-top: 1px solid rgba(0,0,0,.1);
}

h4 {
    margin: 0 0 .2em;
    font-size: 1.1em;
    text-decoration: underline;
}

#address {
    width: 300px;
    max-width: 100%;
}

.autocomplete-container {
    /* relative position for at de absolut positionerede forslag får korrekt placering.*/
    position: relative;
    width: 100%;
    max-width: 30em;
}
.autocomplete-container input {
    /* Både input og forslag får samme bredde som omkringliggende DIV */
    width: 100%;
    box-sizing: border-box;
}
.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: relative;
    /*left: 0;*/
    /*right: 0;*/
    width: 100%;
    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: 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;
}

#search, #data {
    float: left;
    padding: 10px;
}

#search {
    width: 100%;
    position: relative;
}

#data {
    width: 100%;
    background: #ddd;
}

#map {
    display: none;
    /*height: 300px;*/
}

#map .widget-map-copyright a {
    text-decoration: none;
    color: rgba(0,0,0,.3);
}

#map .widget-map-copyright a:hover {
    text-decoration: none;
    color: rgba(0,0,0,.5);
}

sup {
    font-size: xx-small;
}

@media only screen and (min-width: 768px) {
    #search {
        width: 30%;
    }

    #data {
        width: 70%;
    }

    /*#map {*/
    /*    height: 600px;*/
    /*}*/
}
