body {
    font-family: Helvetica, Arial, sans-serif;
    padding: 0;
    margin: 1rem;
    background-color: #E8DB67;
    color: black;
}

a {
    color: black;
}

address {
    font-style: normal;
    margin-top: 1rem;
}

#search {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

#search svg#search-icon {
    float: left;
    fill: #333;
}

#search select#property-listing {
    flex-grow: 1;
    width: 100%;
    padding: .375rem 2.25rem .375rem .75rem;
    font-size: 1rem;
    color: black;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 1rem 1rem;
    border: none;
    border-radius: 0.4rem;
    appearance: none;
}

svg#map {
    fill-rule: evenodd;
    clip-rule: evenodd;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 1.5;
    border-radius: 0.4rem;
    border: 1px solid #999;
}

svg#map path.property, svg#map path.street {
    fill: none;
    stroke: none;
    paint-order: fill;
}

svg#map path.blink {
    animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
    0% {
        stroke-width: 0.4rem;
        stroke: rgba(0, 110, 255, 1);
        fill: rgb(255, 255, 255, 0.5);
    }
    100% {
        stroke-width: 40rem;
        stroke: rgba(0, 110, 255, 0.4);
        fill: rgb(255, 255, 255, 0.5);
     }
}
