/* street address */
.wordy {
    border-right: unset;
    display: block;
    width: 100%;
}

div.fieldWrapper dl.split-address {
    display: grid;
    gap: 1px 6px;
    grid-auto-flow: column;
    grid-template-areas:
      ". . ."
      "street_number route subpremise"
      ". . ."
      "state city zip"
      ;
    grid-template-columns: 1fr 3fr 1fr;
    grid-template-rows: 1fr 2fr 1fr 2fr;
    position: relative;
    width: inherit;
}

div.fieldWrapper dl.split-address label {
    border-right: unset;
    display: block;
    margin: 0 .25rem;
    width: inherit;
    color: var(--text-color-bright);
}

div.fieldWrapper dl.split-address dt,
div.fieldWrapper dl.split-address dd {
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

div.fieldWrapper dl.split-address dt {
    font-size: small;
    padding: 0;
    background-color: var(--section-title-background-color);
}

div.fieldWrapper dl.split-address dd {
    background-color: unset;
    border: none;
    font-size: small;
    height: fit-content;
    padding: 0;
}

div.fieldWrapper span.verified-icon {
    background-color: rgb(75% 75% 75% / .8);
    border-radius: 1rem;
    display: block;
    font-size: 5rem;
    opacity: 0.4;
    position: absolute;
    right: 0;
    top: -3rem;
}

div.fieldWrapper span.verified-icon.success {
    background-color: rgb(0% 75% 0% / .9);
}

div.fieldWrapper span.verified-icon.fail {
    background-color: rgb(75% 0% 0% / .9);
}

div.fieldWrapper div.map {
    border: 1px solid rgb(65% 65% 66% / 1);
    box-shadow: 0 0 4px 2px rgb(50% 50% 50% / 1);
    margin-block-start: 1rem;
    max-width: 92vw;
    width: calc(100% - 2px);
}

div.fieldWrapper div.map img {
    display: block;
    max-width: 90vw;
    object-fit: cover;
    width: 100%;
}

table.mini-no-collapse {
    margin-bottom: 1rem;
    width: inherit;
}

div.fieldWrapper table.mini-no-collapse >tbody >tr >td,
div.fieldWrapper table.mini-no-collapse >tbody >tr >th {
    background-color: yellow;
    color: var(--text-color-medium);
    font-size: small;
    padding: 0 .25rem;
    text-align: left;
}

.fieldWrapper table.mini-no-collapse th:nth-of-type(1),
.fieldWrapper table.mini-no-collapse th:nth-of-type(3) {
    width: 6rem;
}

div.fieldWrapper table.mini-no-collapse >tbody >tr >td {
    border: none;
}

/* is there any point to this? */
@media only screen and (max-width: 600px) {
    div.fieldWrapper table.mini-no-collapse tr {
        display: table-row;
    }
    div.fieldWrapper table.mini-no-collapse >tbody >tr >td,
    div.fieldWrapper table.mini-no-collapse >tbody >tr >th {
        display: table-cell;
    }
}

div.parked-location > div:first-of-type {
    flex-direction: column;
}
