:root {
  --title-font: "League Spartan", sans-serif;
  --body-font: "League Spartan", sans-serif;
  --title-weight: 700;
  --body-weight: 400;
  --border-radius: 10px;
  --body-text: black;
  --excerpt: #999999;
  --accent: #2e6d87;
  --dark: #08445d;
  --masthead-bg: white;
  --link: #999999;
  --link-hvr: #555555;
  --nav-bg: #2e6d87;
  --subnav-link: white;
  --footer-bg: #08445d;
  --footer-link: white;
  --footer-text: white;
}

.is-style-widget-title {
  position: relative;
  margin-top: 0;
  margin-bottom: 0.625rem;
  padding-bottom: 0.5rem;
  font-size: 1.5rem;
}
.is-style-widget-title:before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 4px;
  width: 40px;
  background-color: var(--accent);
}
.is-style-widget-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 4px;
  left: 40px;
  width: 40px;
  background-color: #ddd;
}

.is-style-section-title {
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
}
.is-style-section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}

.is-style-prop-table th,
.is-style-prop-table td {
  padding: 0.25em 0.625rem;
  border: 0;
}
.is-style-prop-table table thead {
  background-color: var(--accent);
  color: var(--footer-text);
}
.is-style-prop-table table tbody tr:nth-child(2n+1) {
  background-color: #f5f5f5;
}
.is-style-prop-table table tbody tr td {
  border: 0;
}
.is-style-prop-table table tbody tr td:first-child {
  font-weight: 700;
}
.is-style-prop-table table tfoot td {
  padding: 0.5rem 0.6em;
}

.is-style-two-col-list {
  grid-template-columns: 1fr 1fr;
}

.is-style-three-col-list {
  grid-template-columns: 1fr 1fr 1fr;
}

.is-style-two-col-list,
.is-style-three-col-list {
  display: grid;
  column-gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.is-style-two-col-list li,
.is-style-three-col-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.625rem;
}
.is-style-two-col-list li:before,
.is-style-three-col-list li:before {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj48dGl0bGU+QXNzZXQgMTwvdGl0bGU+PHBhdGggZD0iTTEwLDBBMTAsMTAsMCwxLDAsMjAsMTAsMTAsMTAsMCwwLDAsMTAsMFptMCwxOGE4LDgsMCwxLDEsOC04QTgsOCwwLDAsMSwxMCwxOFpNMTQuNTksNS41OCw4LDEyLjE3LDUuNDEsOS41OSw0LDExbDQsNCw4LThaIiBmaWxsPSIjMGNiYzJkIi8+PC9zdmc+");
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.is-style-reach-out input :not([type=radio]) :not([type=checkbox]) :not([type=submit]),
.is-style-reach-out textarea {
  padding: 0.5rem;
}

.is-style-sticky {
  position: sticky;
  position: -webkit-sticky;
  height: fit-content;
  top: 1rem;
}
body.admin-bar .is-style-sticky {
  top: 3.875rem;
}
@media (min-width: 48.875rem) {
  body.admin-bar .is-style-sticky {
    top: 3rem;
  }
}
