@charset "UTF-8";
[role=tablist] {
  border-bottom: 1px solid #202f51;
  padding: 0 1em;
  display: flex;
  flex-direction: row;
  justify-items: flex-start;
}

[role=tablist] li.link {
  margin-left: auto;
}

[role=tablist] li.link button {
  width: unset;
  margin: 0;
  padding: 0.2em 0.4em;
  border: 1px solid transparent;
  outline: 0;
  border-radius: 0.4em;
  background-color: transparent;
  font-size: inherit;
  color: blue;
}

[role=tablist] li.link a button {
  padding: 0.2em 0.5em;
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  height: 100%;
}

[role=tablist] li.link button:hover {
  border: 1px solid #aaa;
  outline: 0;
  background-color: #ccc;
}

[role=tablist] li, [role=tablist] a {
  display: inline-block;
  padding: 0;
}

[role=tablist] a {
  display: inline-grid;
  align-items: center;
}

[role=tablist] a.no-border {
  padding-bottom: 5px;
}

[role=tablist] a:not(.no-border) {
  border: 1px solid #202f51;
  border-top-left-radius: 0.5em;
  border-top-right-radius: 0.5em;
  border-bottom: 0;
  padding: 0.2em 0.5em;
  cursor: pointer;
  height: 100%;
}

[role=tablist] [aria-selected] {
  background: #202f51;
  color: #fff;
  cursor: unset;
}

@media (max-width: 30em) {
  [role=tablist] li, [role=tablist] a {
    display: block;
    position: static;
  }
  [role=tablist] a {
    border-top-left-radius: unset;
    border-top-right-radius: unset;
  }
  [role=tablist] [aria-selected] {
    position: static;
  }
  [role=tablist] [aria-selected]::after {
    content: " ⬅";
  }
}
/**
*** Generic classless styles as a useful css reset/normalizer
***   
***   Well... classless except I started adding .touched class for help with 
***   styling invalid form elements and .hidden for hiding elements. I think
***   it's best if I migrate those from this file.
***   
***   
**/
* {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1.3;
  box-sizing: border-box;
  font-family: inherit;
}

html {
  height: 100%;
  font-size: 90%;
  font-family: "Segoe UI", Candara, "Bitstream Vera Sans", "DejaVu Sans", "Trebuchet MS", Verdana, "Verdana Ref", sans-serif;
}

body {
  min-height: 100%;
  display: flex;
  flex-flow: column;
}
body > header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1em;
}
body > main {
  padding: 1em;
  flex-grow: 1;
}
body > footer {
  background: rgba(0, 0, 0, 0.05);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1em;
}

p {
  margin-bottom: 1em;
}

input,
textarea,
select {
  padding: 0.25em 0.4em;
  /* border-radius: .3em; */
  font-size: inherit;
  font-family: inherit;
}

input::placeholder,
textarea::placeholder {
  color: #999;
}

/* input:not(:placeholder-shown):not(:focus):invalid,
textarea:not(:placeholder-shown):not(:focus):invalid {
	border: 2px solid #f00d;
	background: rgb(250, 128, 114, .5);
} */
::-webkit-file-upload-button {
  padding: 1em;
  font-family: inherit;
  cursor: pointer;
}

input[type=file] {
  cursor: pointer;
  font-family: inherit;
  font-size: 1.1em;
  padding: 0;
  width: 100%;
}

[type=hidden] {
  display: none;
  visibility: hidden;
  opacity: 0;
}

a {
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  text-decoration: underline;
}

input::placeholder {
  text-align: left;
}

input[type=number],
input[type=date] {
  text-align: right;
}

hr {
  height: 1px;
  background-color: #ccc;
  border: none;
}

/*
---------- begin app.scss
*/
/*
** Attempted variable naming convention:
**   $category-location-attribute-effect
*/
:root {
  color: #222;
}

body > header {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
body > header a.cart {
  color: white;
  margin-left: 1em;
}

.home-logo {
  max-width: 100%;
}

.wide {
  overflow-x: auto;
  overflow-y: clip;
  display: block;
}

main table {
  border-collapse: collapse;
  padding: 0.5em 0;
  width: initial;
}
main table.full-width {
  width: 100%;
}
main table thead tr {
  background: white;
  color: #fff;
}
main table thead a {
  color: #fff;
}
main table thead tr th {
  font-weight: normal;
}
main table tbody tr:nth-child(odd) {
  background: #eee;
}
main table tbody tr:nth-child(even) {
  background: #ddd;
}
main table tbody tr.odd {
  background: #eee;
}
main table tbody tr.even {
  background: #ddd;
}
main table td,
main table th {
  text-align: center;
  border: 1px solid #ccc;
  padding: 0.2em 0.5em;
  vertical-align: middle;
}
main table caption.heading {
  display: table-caption;
  caption-side: top;
  padding-bottom: 0.2em;
  text-align: left;
}
main table caption.footnote {
  display: table-caption;
  caption-side: bottom;
  padding-top: 0.2em;
  text-align: center;
}

label {
  display: block;
}

form.horizontal {
  display: flex;
  flex-flow: row;
}

form {
  display: flex;
  flex-flow: column nowrap;
}

form:not(.horizontal) > input {
  width: 100%;
  margin: 1em 0;
}

fieldset {
  border: 0;
}

form button {
  padding: 0.5em;
  font-size: inherit;
  font-family: inherit;
}

form button[type=submit] {
  font-weight: bold;
}

form input,
form select {
  width: 100%;
}

h3 {
  margin-top: 1em;
  text-align: left;
  padding-bottom: 0;
}

h4 {
  padding-top: 0.5em;
}

.value-summary {
  display: flex;
  gap: 0 1em;
  white-space: nowrap;
  flex-flow: row;
  flex-wrap: wrap;
}
.value-summary table thead tr th {
  min-width: 6em;
}
.value-summary tr td {
  text-align: right;
}
.value-summary tr td:first-child {
  text-align: left;
}
.value-summary > p.disclaimer {
  flex-basis: 100%;
}

th[text],
td[text],
th.left,
td.left,
.left {
  text-align: left;
}

th.center,
td.center,
.center {
  text-align: center;
}

th[num],
td[num],
th.right,
td.right,
.right {
  text-align: right;
}

.divider {
  margin: 2em 0;
  text-align: center;
  color: #ccc;
}

.divider hr {
  height: 1px;
  background-color: #ccc;
  border: none;
}

.divider p {
  margin: 0;
  padding: 0;
}

section.nav {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin: 0;
  margin-bottom: 1em;
}

section.nav p {
  padding: 0;
  margin: 0;
}

.nav a:hover,
.nav a:active,
.nav a:focus {
  text-decoration: underline;
  box-shadow: 0px 0px 0.1em 0.2em #eee;
  box-shadow: 0px 0px 0.1em 0.2em rgba(170, 170, 170, 0.2666666667);
  background-color: #eee;
  background-color: rgba(170, 170, 170, 0.2666666667);
  border-radius: 0.2em;
}

li.select2-results__option {
  padding: 0.1em 0.5em;
}

li.select2-results__option a {
  text-decoration: none;
}

li.select2-results__option a:hover,
li.select2-results__option a:active,
li.select2-results__option a:focus {
  text-decoration: underline;
  box-shadow: 0px 0px 0.1em 0.2em #eee;
  box-shadow: 0px 0px 0.1em 0.2em rgba(170, 170, 170, 0.2666666667);
  background-color: #eee;
  background-color: rgba(170, 170, 170, 0.2666666667);
  border-radius: 0.2em;
}

input.livesearch {
  margin-bottom: 0;
}

div.livesearch.result {
  display: none;
  margin: 0;
  padding: 0 0.7em 0.5em;
  background-color: #efefef;
}

.parcel-data,
.parcel-info {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  gap: 1em;
}

.parcel-info .parcel-detail {
  max-width: 30em;
  flex-shrink: 1;
}

.parcel-info .parcel-detail > h3:first-child {
  margin-top: 0;
}

.parcel-info .values table {
  width: 100%;
}
.parcel-info .values table tr > * {
  text-align: right;
}
.parcel-info .values table tr > *:first-child {
  white-space: nowrap;
  text-align: left;
}
.parcel-info div.gis {
  position: relative;
  border-radius: 0.2em;
  margin-top: 1em;
  flex: 1 0 auto;
  text-align: center;
  display: flex;
  flex-flow: column nowrap;
  background-color: white;
  resize: vertical;
  overflow: hidden;
  flex-shrink: 1;
}

.gis-footer {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  padding: 0.3em 0.6em;
  gap: 0 1em;
}

.gis-footer * {
  color: white;
}

.parcel-info .gis .drag-corner {
  flex-grow: 0;
  text-align: right;
}

input.autocomplete {
  margin-bottom: 0;
}

div.autocomplete.result {
  padding: 0;
  position: absolute;
  display: none;
}

div.autocomplete.result ul {
  margin: 0;
  padding: 0;
  background-color: #efefef;
  border: 1px solid #bbb;
}

div.autocomplete.result ul li {
  border-bottom: 1px solid #bbb;
  padding: 0.1em 0.7em;
}

div.autocomplete.result ul li a {
  line-height: 1.4em;
  text-decoration: none;
  box-shadow: none;
}

div.autocomplete.result ul a:hover,
div.autocomplete.result ul li:hover {
  background-color: #fff;
}

.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.flex-spread {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}

.flex-left, .flex-right {
  display: flex;
  flex-flow: row wrap;
  gap: 0 1em;
}

.flex-right {
  justify-content: flex-end;
}

form.bills button[type=submit] {
  font-size: 0.9em;
  font-weight: normal;
  padding: 0.1em;
}

form.cart.pnp_xml_form {
  display: block;
}
form.cart.pnp_xml_form button {
  padding-left: 5em;
  padding-right: 5em;
}

.cart td input {
  padding: 0.1em;
  width: 100%;
  text-align: inherit;
}

.cart-update-actions {
  margin-top: 1em;
}

.search-results table {
  margin: 0.4em 0;
}

.grid-2c {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
}

header form.quick-search {
  flex: 1 0 auto;
}

form.quick-search {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  height: 3em;
  border: 0.1em solid #ddd;
  border-radius: 0.2em;
}

form.quick-search > input {
  margin: 0;
  padding: 0.5em;
  border: 0;
  border-radius: 0;
}

form.quick-search button {
  height: 101%;
  min-width: 3em;
  padding: 0;
  border: 0;
  margin-right: -1px;
}

form.quick-search button svg {
  background-color: gray;
  stroke: white;
  max-width: 100%;
  max-height: 100%;
  padding: 20%;
  border-radius: 0;
  margin-top: 1px;
  margin-bottom: 1px;
  height: calc(100% - 2px);
}

form.quick-search button img {
  /* height: 24px;
  width: 24px; */
  height: 100%;
  width: 100%;
  max-height: 100%;
  max-width: 100%;
}

#livesearch-autocomplete {
  position: absolute;
  z-index: 999;
}

#livesearch-autocomplete table {
  margin: 0;
  padding: 0;
  border: 0.2em solid white;
  box-shadow: 0px 10px 5px 0px rgba(0, 0, 0, 0.75);
  border-collapse: collapse;
  background-color: white;
  width: 100%;
}

#livesearch-autocomplete table thead {
  background-color: #ccc;
}

#livesearch-autocomplete table td {
  text-align: left;
  border: 1px solid #aaa;
  padding: 0.1em 0.4em;
}

#livesearch-autocomplete .lookup-link,
.lookup-link {
  color: #222;
}

.grid-1d {
  width: auto;
}

.grid-1d th {
  text-align: left;
  padding-right: 1em;
  color: white;
  font-weight: normal;
  background-color: white;
  vertical-align: top;
}

.grid-1d td {
  text-align: left;
  padding-right: 2em;
}
.grid-1d td p:last-of-type {
  margin: 0;
}

.grid-1d-2d thead th {
  text-align: center;
  background-color: #bbb;
  font-weight: bold;
}

.grid-1d-2d tbody th {
  text-align: left;
  font-weight: bold;
}

.grid-1d-2d tbody th,
.grid-1d-2d tbody td {
  padding: 0.2em 0.4em;
}

section.disclaimer {
  margin-top: 2em;
  font-size: 90%;
}

.computation-table table {
  width: auto;
}

.computation-table table tr {
  border: 1px solid #ccc;
}

.computation-table table tr th,
.computation-table table tr td {
  border: 0;
}

form.add-to-cart label {
  text-align: left;
  padding: 0.5em 0;
}

form.add-to-cart input {
  max-width: 7em;
  text-align: right;
}

form.add-to-cart label[for=taxes-pay-this-amount] {
  max-width: 16em;
}

.horizontal {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  justify-content: flex-start;
}

.side-by-side > * {
  display: inline-block;
  vertical-align: top;
  margin-right: 1em;
}

.grid-1d td.table-container {
  background-color: white;
  border: 0;
  padding-left: 1em;
}

.grid-1d td.table-container table {
  margin: 0;
  width: 100%;
}

.grid-1d td.table-container table td {
  text-align: unset;
  padding-right: unset;
  padding: 0.3em;
}

.grid-1d td.table-container table th {
  padding-right: 0;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.flex-row-wrap {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  justify-content: flex-start;
  margin-bottom: 1em;
}

.flex-row-wrap div:first-child {
  margin-right: 1em;
}

.flex-row-wrap div:first-child table {
  margin-bottom: 0;
}

.flex-row-wrap div:nth-child(2) h4 {
  margin-top: 1em;
}

.flex-row-wrap div:nth-child(2) table {
  margin: 0;
}

.faded {
  color: #777;
}

table.grid-transposed tbody th {
  background-color: white;
  color: #fff;
  font-weight: normal;
  text-align: left;
}

button:hover {
  filter: brightness(115%);
  cursor: pointer;
}

.search-results thead th {
  padding: 0;
}

.search-results thead th header {
  padding: 0.5em;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-end;
  color: white;
  text-align: left;
}

.search-results thead th header h3 {
  margin: 0;
  display: inline;
  color: white;
  margin-right: 1em;
}

.search-results thead th header h3 a {
  color: white;
}

.search-results thead th header div.links {
  text-align: right;
}

.search-results thead th header div.links a {
  color: white;
}

.related-search-links {
  text-align: left;
}

.search caption header {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 0.3em;
  background-color: white;
}

.search caption header form {
  display: inline-flex;
  border: 1px solid white;
  flex-direction: row;
}

.search caption header form input {
  width: 4em;
  margin: 0;
  padding: 0.1em 0.2em;
  font-size: 90%;
  text-align: center;
  border-radius: 0;
}

.search caption header form button {
  font-weight: normal;
  margin: 0;
  padding: 0.1em 0.2em;
  font-size: 90%;
  border-radius: 0;
  border: 0;
}

.search caption header .links {
  text-align: right;
}

.collapsible h3 button {
  margin-left: 0.5em;
  padding: 0.2em 0.4em;
  border: 1px solid transparent;
  outline: 0;
  border-radius: 0.4em;
}

.collapsible h3 button:hover {
  border: 1px solid #aaa;
  outline: 0;
  background-color: #aaa;
}

.collapsed > div,
.collapsed > *:not(h3) {
  display: none;
}

form.map-search {
  display: grid;
  width: 16em;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5em;
}

form.map-search > button,
form.map-search > .button {
  grid-column-start: span 2;
}

form.map-search > .button button {
  width: 100%;
}

h1 {
  margin-top: 1em;
  font-size: 170%;
}

h2 {
  margin-top: 1em;
  font-size: 160%;
  padding-bottom: 0;
}

h3 {
  font-size: 150%;
  padding-bottom: 0;
}

h4 {
  font-size: 140%;
  padding-bottom: 0;
}

h5 {
  font-size: 130%;
  padding-bottom: 0;
}

h6 {
  font-size: 120%;
  padding-bottom: 0;
}

.tabbed h2 {
  padding-top: 0.5em;
  margin-top: 0;
}
.tabbed > div:focus {
  margin: -0.2em;
  padding: 0.2em;
  margin-top: 0;
  padding-top: 0;
}
.tabbed div[role=tabpanel]:focus {
  outline: 0 !important;
}

h1 > .subtitle,
h2 > .subtitle {
  font-weight: normal;
  font-size: 80%;
}

/*
* Adjustments for bigger-than-mobile screens
*/
@media (min-width: 600px) {
  .grid-2c {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
  }
  .search-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1em;
    justify-items: stretch;
  }
}
@media (min-width: 1201px) {
  .parcel-info .parcel-detail {
    min-width: 15em;
    max-width: 30em;
  }
}
@media print {
  .no-print,
.collapsed,
.nav {
    display: none !important;
  }
  .wide {
    overflow-x: visible;
    overflow-y: visible;
  }
}
.tax-outstanding button {
  padding: 0 0.3em;
}

main table tbody tr.highlight {
  background-color: navajowhite;
}

select {
  padding: 0.25em;
}

.building-diagram {
  margin-top: 1em;
}
.building-diagram .buttons {
  display: block;
}
.building-diagram button {
  padding: 0.5em 1em;
}

.search-adv {
  max-width: unset;
}
.search-adv form {
  display: unset;
  flex-flow: unset;
}
.search-adv form h2 {
  padding: 0.5em 0;
  margin: 0;
}
.search-adv form label {
  flex: 1;
  cursor: pointer;
}
.search-adv form button {
  width: 100%;
  margin: 1em 0 0.5em;
}
.search-adv form .form-buttons {
  display: inline-block;
  margin-left: 0.5em;
  vertical-align: bottom;
}
.search-adv form .form-buttons button {
  margin: 0;
  padding: 0.3em 0.6em;
  border: 1px solid #bbb;
  background-color: #ccc;
  outline: 0;
  border-radius: 0.4em;
  width: auto;
}
.search-adv form .form-buttons button:hover {
  border: 1px solid #777;
  outline: 0;
  background-color: #999;
}
.search-adv form .form-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1em;
}
@media (min-width: 40em) {
  .search-adv form .form-fields {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  }
}
.search-adv form .form-fields .fields > label > div > label {
  margin: 0;
}
.search-adv form .form-fields .fields > label > div > label:not(:last-of-type) {
  margin-right: 1em;
}
.search-adv label {
  margin: 0.5em 0;
}
.search-adv label > div {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: space-between;
}
.search-adv label > div button[data-fn=select-all] {
  width: unset;
  margin: 0;
  padding: 0 0.4em;
  border: 1px solid transparent;
  outline: 0;
  border-radius: 0.4em;
  background-color: transparent;
}
.search-adv > label > input {
  width: 100%;
}
.search-adv > label > input[type=radio] {
  width: unset;
}

.search-adv label:hover button[data-fn=select-all] {
  border: 1px solid #aaa;
  outline: 0;
  background-color: #fff;
  color: #444;
  z-index: 1;
}
.search-adv label:hover button[data-fn=select-all]:hover {
  background-color: #eee;
}

div.dropdown {
  display: none;
  position: absolute;
  background: #eee;
  box-shadow: 0px 10px 5px 0px rgba(0, 0, 0, 0.75);
  border-top: 0;
  z-index: 1;
}
div.dropdown > * {
  display: none;
}
div.dropdown > .instructions,
div.dropdown > .loading {
  padding: 0.1em 0.2em 0.2em;
}
div.dropdown > ul.results {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background-color: #efefef;
}
div.dropdown > ul.results li {
  border-bottom: 1px solid #bbb;
  padding: 0.1em 0.1em 0.1em 0.6em;
  width: 100%;
}
div.dropdown > ul.results li:last-child {
  border-bottom: 0;
  padding-bottom: 0.2em;
}
div.dropdown > ul.results li.selected {
  outline: 1px solid navajowhite;
  background: navajowhite;
}

.search2-results {
  margin-top: 1em;
}

.horizontal > * {
  margin-right: 1em;
}

.horizontal .grid2 {
  margin-top: unset;
}

.template {
  display: none !important;
}

ul.tabs {
  border-bottom: 1px solid rgb(32, 47, 81);
  padding: 0 1em;
}

ul.tabs li {
  display: inline-block;
  border: 1px solid rgb(32, 47, 81);
  border-top-left-radius: 0.5em;
  border-top-right-radius: 0.5em;
  border-bottom: 0;
  padding: 0.2em 0.5em;
  cursor: pointer;
}

ul.tabs li.selected {
  background: rgb(32, 47, 81);
  color: #fff;
  cursor: unset;
}

div.tabs > * {
  display: none;
  margin: 0;
}
div.tabs > *.selected {
  display: block;
}

@media (min-width: 80em) {
  .horizontal.tabs {
    flex-flow: row nowrap;
  }
  div.tabs > * {
    margin-right: 1em;
  }
  div.tabs > *:last-child {
    margin: 0;
  }
  .search2-form {
    max-width: 17em;
    flex-flow: row nowrap;
  }
  .search2-form form {
    display: flex;
  }
  ul.tabs {
    display: none;
  }
  div.tabs > * {
    display: block !important;
  }
}
.search2-form.no-query {
  max-width: unset;
}

.search2-form.no-query form {
  display: grid;
}

.map a:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
}

input.number,
input.date {
  text-align: right;
}

table.livesearch-results td {
  border: 0;
}

form.none input,
form.none select,
form.none button {
  width: unset;
}

form.export {
  max-width: 25em;
  margin-top: 1em;
}
@media print {
  form.export {
    display: none;
  }
}
form.export h3 {
  margin-top: 0;
}
form.export label,
form.export button {
  margin: 0.3em 0;
}
form.export select {
  overflow-y: auto;
}
form.export option {
  padding: 0 0.1em 0.1em;
}

.building-data {
  margin-bottom: 1em;
}

iframe.gis,
div.gis-placeholder {
  min-height: 30em;
  height: 100%;
  width: 100%;
}

div.gis-placeholder {
  color: white;
  display: flex;
  min-height: 30em;
  color: white;
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  background: white;
  border: 1px solid white;
}

.attention-on {
  box-shadow: 0 0 5px 5px navajowhite;
  background-color: navajowhite;
  transition: background-color box-shadow 1s;
}

.attention-off {
  box-shadow: none;
  background-color: unset;
}

.installments {
  align-self: flex-start;
}
.installments button[type=submit] {
  font-weight: normal;
  font-size: 90%;
  padding: 0.55em 0.4em 0.25em;
  width: 100%;
  text-align: left;
}
.installments .grid2 tr {
  height: 2em;
}

.off-screen {
  position: absolute;
  left: -9999px;
}

[data-clipboardtarget] {
  padding: 0.1em 0.2em;
  border: 1px solid #ddd;
  outline: 0;
  border-radius: 0.4em;
  margin: 0;
}
[data-clipboardtarget]:hover {
  border: 1px solid #aaa;
  background: #bbb;
  cursor: pointer;
}

p.criteria > * {
  vertical-align: middle;
}

.unified-searches {
  display: flex;
  flex-flow: row wrap;
  gap: 1em;
  justify-content: stretch;
  align-content: stretch;
  align-items: flex-end; /* bottom align when screen is narrow */
  margin-bottom: 0.5em;
}

.unified-searches > * {
  flex: 1;
  min-width: 10em;
}

.cama {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 1em;
}

.taxyby {
  display: flex;
  flex-flow: row nowrap;
  gap: 1em;
}

.cama,
.taxyby,
.taxgrid {
  font-size: 13px;
  /* tbody td { vertical-align: middle; } */
  /* tbody td > * { vertical-align: middle; } */
}
.cama *,
.taxyby *,
.taxgrid * {
  font-family: Roboto;
}
.cama h1,
.taxyby h1,
.taxgrid h1 {
  display: inline-block;
}
.cama h2,
.taxyby h2,
.taxgrid h2 {
  font-size: 120%;
}
.cama caption h2,
.taxyby caption h2,
.taxgrid caption h2 {
  text-align: left;
}
.cama tbody th,
.taxyby tbody th,
.taxgrid tbody th {
  font-weight: normal;
}
.cama td.explain,
.taxyby td.explain,
.taxgrid td.explain {
  text-align: left;
  color: #bbb;
}
.cama td[title],
.cama th[title],
.taxyby td[title],
.taxyby th[title],
.taxgrid td[title],
.taxgrid th[title] {
  background-image: linear-gradient(225deg, #ccc, #ccc 3px, transparent 3px, transparent);
}
.cama td[info][title],
.cama th[info][title],
.taxyby td[info][title],
.taxyby th[info][title],
.taxgrid td[info][title],
.taxgrid th[info][title] {
  background-image: linear-gradient(225deg, orange, orange 3px, transparent 3px, transparent);
}
.cama [data-clipboardtarget=max_ex_val]:hover,
.taxyby [data-clipboardtarget=max_ex_val]:hover,
.taxgrid [data-clipboardtarget=max_ex_val]:hover {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M16 1H4a2 2 0 00-2 2v14h2V3h12V1zm3 4H8a2 2 0 00-2 2v14c0 1.1.9 2 2 2h11a2 2 0 002-2V7a2 2 0 00-2-2zm0 16H8V7h11v14z'/%3E%3C/svg%3E"), pointer;
}
.cama tr.strike *,
.taxyby tr.strike *,
.taxgrid tr.strike * {
  text-decoration: line-through;
}
.cama td,
.cama th,
.taxyby td,
.taxyby th,
.taxgrid td,
.taxgrid th {
  background-color: #fff;
  font-weight: normal;
  color: #333;
  padding: 0.3em 0.8em;
}
.cama td[data-clipboardtarget],
.cama th[data-clipboardtarget],
.taxyby td[data-clipboardtarget],
.taxyby th[data-clipboardtarget],
.taxgrid td[data-clipboardtarget],
.taxgrid th[data-clipboardtarget] {
  background-color: navajowhite;
  border-radius: 0;
}
.cama td svg,
.cama th svg,
.taxyby td svg,
.taxyby th svg,
.taxgrid td svg,
.taxgrid th svg {
  vertical-align: bottom;
}
.cama th,
.taxyby th,
.taxgrid th {
  font-weight: bold;
}
.cama tr[text] td,
.cama tr[text] th,
.cama td[text],
.cama th[text],
.taxyby tr[text] td,
.taxyby tr[text] th,
.taxyby td[text],
.taxyby th[text],
.taxgrid tr[text] td,
.taxgrid tr[text] th,
.taxgrid td[text],
.taxgrid th[text] {
  text-align: left;
}
.cama tr[num] td,
.cama tr[num] th,
.cama td[num],
.cama th[num],
.taxyby tr[num] td,
.taxyby tr[num] th,
.taxyby td[num],
.taxyby th[num],
.taxgrid tr[num] td,
.taxgrid tr[num] th,
.taxgrid td[num],
.taxgrid th[num] {
  text-align: right;
}
.cama tbody th,
.taxyby tbody th,
.taxgrid tbody th {
  text-align: left;
  white-space: nowrap;
}
.cama tbody th.center,
.taxyby tbody th.center,
.taxgrid tbody th.center {
  text-align: center;
}
.cama tbody tr.spacer td,
.taxyby tbody tr.spacer td,
.taxgrid tbody tr.spacer td {
  background-color: #eee;
  border-top-color: #eee;
}
.cama thead th.center,
.taxyby thead th.center,
.taxgrid thead th.center {
  text-align: center;
}
.cama td.holder,
.taxyby td.holder,
.taxgrid td.holder {
  padding: 0;
}
.cama td.holder table.sub,
.taxyby td.holder table.sub,
.taxgrid td.holder table.sub {
  margin: 0;
  width: 100%;
}
.cama td.holder table.sub td,
.taxyby td.holder table.sub td,
.taxgrid td.holder table.sub td {
  border: 0;
  color: #aaa;
}
.cama td.holder table.sub td:first-of-type,
.taxyby td.holder table.sub td:first-of-type,
.taxgrid td.holder table.sub td:first-of-type {
  padding-left: 1.5em;
}

.tax-current_yr .flex-row-wrap {
  align-items: unset;
}

table[text] td,
table[text] th {
  text-align: left;
}

table[num] td,
table[num] th {
  text-align: right;
}

.cart-container {
  display: inline-flex;
  flex-flow: column;
  align-items: flex-start;
  gap: 1em;
}
.cart-container .cart-update-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-container tr .no-bling {
  border: none;
  background-color: white;
}
.cart-container a.button {
  border-top: 1px solid #ccc;
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
  border-left: 1px solid #ccc;
  border-radius: 0.3em;
  padding: 1px 6px 2px 6px;
  text-decoration: none;
  background-color: #eee;
  font-weight: bold;
  padding: 0.5em 1em;
  color: darkgreen;
}
.cart-container a.button.delete {
  display: inline;
  border-top: 1px solid #ccc;
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
  border-left: 1px solid #ccc;
  border-radius: 0.3em;
  padding: 1px 6px 2px 6px;
  text-decoration: none;
  background-color: #eee;
  color: #d33;
  font-weight: bold;
}
.cart-container a.button.delete:hover {
  outline: 1px solid red;
}
.cart-container a.button.delete::after {
  content: "X";
}
.cart-container a.button.delete.confirm {
  color: white;
  background-color: red;
}
.cart-container a.button.delete.confirm::after {
  content: "confirm";
}
.cart-container a.button.delete.cancel {
  display: none;
  color: #333;
  font-weight: normal;
  margin-left: 0.2em;
}
.cart-container a.button.delete.cancel::after {
  content: "cancel";
}
.cart-container a.button.delete.confirm + a.button.delete.cancel {
  display: inline;
}
.cart-container td,
.cart-container th {
  position: relative;
}
.cart-container .current button[data-action] {
  position: absolute;
  z-index: 1;
  left: 50%;
  border-radius: 1px;
  padding: 0.1em 0.3em;
  transform: translateX(-50%);
  transition: all 100ms;
  white-space: nowrap;
}
.cart-container td.current {
  outline: 1px solid #202f51;
}
.cart-container th.current {
  outline: 3px solid white;
}
.cart-container td.current button[data-action] {
  top: 33px;
  outline: 3px solid #202f51;
  border: 1px solid white;
  background-color: #202f51;
  color: white;
}
.cart-container td.current button[data-action]:hover {
  outline: 3px solid #202f51;
  border: 3px solid white;
  background: #202f51;
}
.cart-container th.current button[data-action] {
  bottom: 23px;
  background: #f8f8f8;
  outline: 3px solid #f8f8f8;
  border: 3px solid #d8d8d8;
}
.cart-container th.current button[data-action]:hover {
  outline: 3px solid #d8d8d8;
  border: 3px solid #c0c0c0;
  background: #d0d0d0;
}
.cart-container .cart-submit-actions {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1em;
  width: 0;
  min-width: 100%;
}

@media (min-width: 500px) {
  .together-500 {
    display: flex;
    flex-flow: row wrap;
    gap: 0 1em;
  }
}

.hide {
  display: none;
}

.nowrap {
  white-space: nowrap;
}

.loader {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-color: #eceaea;
  background-image: url("/gsa/img/spinner-horiz.gif");
  /* background-size: 50px; */
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10000000;
  opacity: 0.7;
  /* filter: alpha(opacity=70); */
}

li[data-notatab] a {
  color: darkred;
}

body > footer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
body > footer .content {
  flex-basis: 60%;
}
body > footer.copyright {
  background-color: white;
}

*:focus {
  outline: 2px solid black !important;
}

[role=tablist] [aria-selected] {
  background: #4E0F01;
  color: #fff;
}

[role=tablist] [aria-selected]:hover,
[role=tablist] [aria-selected]:visited,
[role=tablist] [aria-selected]:focus {
  color: #fff;
}

.grid {
  padding: 0;
}

form.quick-search button svg,
.grid-1d th,
table.grid-transposed tbody th,
.parcel-info div.gis,
main table thead tr th {
  background-color: #4E0F01;
}

.owners-box {
  display: flex;
  gap: 3em;
}
.owners-box .owner-disclaimer {
  position: relative;
}
.owners-box .owner-disclaimer::before {
  content: "* ";
  position: absolute;
  top: 0;
  left: -0.75em;
}

@media print {
  .kint-rich {
    display: none !important;
  }
  .gis {
    background-color: white !important;
  }
  .gis .gis-footer {
    display: none;
  }
}
p {
  line-height: unset;
  font-size: unset;
}

.ownership {
  display: flex;
  flex-direction: row;
  gap: 1em;
}

.ecomm a.button {
  display: inline-block;
  border-top: 1px solid #ccc;
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
  border-left: 1px solid #ccc;
  border-radius: 0.3em;
  text-decoration: none;
  background-color: #eee;
  font-weight: bold;
  padding: 0.5em 1em;
  text-align: center;
}
.ecomm a.button:hover {
  background-color: #ddd;
}