@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300italic,400,400italic,600,600italic");
body {
  box-sizing: border-box;
  margin: 0;
}

figure {
  display: table;
  margin: 0 0 2rem 0;
}

figcaption {
  display: table-caption;
  caption-side: bottom;
}

ul {
  line-height: 1.5;
  list-style-type: none;
  padding-left: 0;
}

html,
body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  --nav-height: 113px;
  background: #ffffff;
  color: #474747;
  display: flex;
  flex-direction: column;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: clamp(1rem, 8vw - 2rem, 1.2rem);
  font-weight: 300;
  min-height: 100vh;
  padding-top: var(--nav-height);
}
@media (max-width: 736px) {
  body {
    --nav-height: 90px;
  }
}

h1,
h2,
h3 {
  font-family: "InterDisplay", "Source Sans Pro", sans-serif;
  font-weight: 600;
}

b,
strong {
  font-weight: 600;
}

.img-responsive {
  width: 100%;
}

.default-template {
  flex-grow: 1;
}
.default-template > .container {
  padding: 2rem 0 3rem;
}
@media (max-width: 736px) {
  .default-template > .container {
    padding: 2rem 2rem 3rem;
  }
}
.default-template h1,
.default-template h2,
.default-template h3 {
  color: #474747;
}
.default-template h1 {
  font-size: 2.4rem;
}
.default-template.home {
  margin-top: 0;
  max-width: unset;
  width: 100%;
}
.default-template.home a {
  color: #474747;
}
.default-template.home a:hover {
  border-bottom: 0;
  color: #858585;
}
.default-template.home .blog {
  background-color: #e2f3fc;
}
.default-template.home .grid-container a {
  padding: 0.5rem 0;
}
@media (min-width: 736px) {
  .default-template.home .grid-container a {
    padding: 3rem 0;
  }
}
.default-template p {
  line-height: 28px;
}
.default-template a {
  border-bottom: 1px dotted #7ba60d;
  color: #7ba60d;
  font-weight: 400;
  text-decoration: none;
}
.default-template a:hover {
  border-bottom: 1px solid #a1cf2d;
  color: #a1cf2d;
  transition: color 0.3s ease-in-out;
}
.default-template blockquote {
  font-family: "Source Sans Pro", Inter, sans-serif;
  font-weight: 400;
  border-left: 5px solid #a3d7ff;
  background-color: #f6f6f6;
  margin: 0;
}
@media (min-width: 736px) {
  .default-template blockquote {
    padding: 0.5em 1em;
  }
}
.default-template blockquote p {
  margin: 1rem 0.5rem;
}
.default-template .gallery a {
  border: 0;
}
.default-template figcaption {
  color: #797979;
  font-size: 85%;
}
.default-template figure img {
  background-color: #fff;
  padding: 4px;
  box-shadow: 0 1px 2px #999999;
  max-width: 100%;
}
.default-template .note {
  color: #9e9e9e;
  font-size: 90%;
  font-style: italic;
}

.container,
.grid-container {
  margin: 0 auto;
  max-width: 100%;
  width: 1400px;
}
@media (max-width: 1680px) {
  .container,
  .grid-container {
    width: 1200px;
  }
}
@media (max-width: 1280px) {
  .container,
  .grid-container {
    width: 960px;
  }
}
@media (max-width: 980px) {
  .container,
  .grid-container {
    width: 95%;
  }
}
@media (max-width: 840px) {
  .container,
  .grid-container {
    width: 95%;
  }
}
@media (max-width: 736px) {
  .container,
  .grid-container {
    width: 90%;
  }
}
@media (max-width: 480px) {
  .container,
  .grid-container {
    width: 100%;
  }
}

.grid-container {
  display: grid;
}
.grid-container a {
  border-bottom: 0;
  color: #474747;
}
@media (min-width: 736px) {
  .grid-container.three-col {
    gap: 3rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 736px) {
  .grid-container.two-col {
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid-container.center {
  text-align: center;
}
.grid-container .grid-item {
  display: flex;
  flex-direction: row;
  height: 100%;
  padding-top: 1rem;
  border: 0;
}
.grid-container .grid-item.main-section {
  transition: transform 0.5s ease;
}
.grid-container .grid-item.main-section:hover {
  transform: translateY(-5px);
}
.grid-container .grid-item.main-section:hover h1 {
  color: #858585;
}
.grid-container .grid-item.main-section h1 {
  transition: color 0.5s ease;
}
.grid-container .grid-item .image {
  text-align: center;
}
.grid-container .grid-item .image img {
  height: auto;
  max-width: 100%;
}
.grid-container .grid-item .section-text {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-left: 1rem;
}
.grid-container .grid-item .section-text h1 {
  font-size: clamp(2rem, 8vw - 2rem, 2.4rem);
}
.grid-container .grid-item .section-text h2 {
  margin-top: 0;
}
@media (min-width: 736px) {
  .grid-container .grid-item {
    flex-direction: column;
  }
  .grid-container .grid-item .section-text {
    margin-left: 0;
    text-align: center;
  }
}

.blog-index {
  border-bottom: 1px solid #ffffff;
  display: flex;
  flex-direction: column;
  line-height: 2.5;
  padding: 1rem 0;
}
.blog-index .post-meta {
  flex-shrink: 0;
  font-size: 1rem;
  width: 20rem;
}
.blog-index h3 {
  flex-grow: 1;
  line-height: 1.5;
  margin-bottom: 0;
}
.blog-index h3 a {
  border-bottom: 0;
}
@media screen and (min-width: 1280px) {
  .blog-index {
    align-items: center;
    flex-direction: row;
    padding: 0.3em 0;
  }
  .blog-index .tags {
    text-align: right;
    width: 30rem;
  }
}

.blog {
  padding: 1rem 0 2rem 0;
}
.blog .header-row {
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
}
.blog .blog-index {
  border-bottom: 1px solid #ffffff;
  display: flex;
  flex-direction: column;
  line-height: 2.5;
  padding: 1rem 0;
}
.blog .blog-index .post-meta {
  flex-shrink: 0;
  font-size: 1rem;
  width: 20rem;
}
.blog .blog-index h3 {
  flex-grow: 1;
  margin-bottom: 0;
}
.blog .blog-index h3 a {
  border-bottom: 0;
  color: #474747;
}
@media screen and (min-width: 1280px) {
  .blog .blog-index {
    align-items: center;
    flex-direction: row;
    padding: 0.3rem 0;
  }
  .blog .blog-index .tags {
    text-align: right;
    width: 30rem;
  }
}
.blog h3 {
  margin-top: 0;
}
.blog .grid-item {
  flex-direction: row;
  gap: 2rem;
}

.blog-post .post-meta {
  font-size: 1rem;
  justify-content: space-between;
  margin-top: 1rem;
}
@media (min-width: 840px) {
  .blog-post .post-meta {
    display: flex;
  }
}
.blog-post .post-meta .byline {
  margin-bottom: 1em;
}

.tags a {
  background-color: #f5f5f5;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  color: #474747;
  padding: 0.4rem 0.5rem;
}
.tags a:hover {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  color: #474747;
  transition: background-color 0.5s ease;
}

.post-navigation {
  background-color: transparent;
  margin: 0 auto;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: bold;
}
.post-navigation a {
  text-decoration: none;
}
.post-navigation a:hover {
  border-bottom: 1px dashed white;
}
.post-navigation .prev-post::before {
  content: "˂";
  margin-right: 0.5rem;
}
.post-navigation .next-post::after {
  content: "˃";
  margin-left: 0.5rem;
}
.post-navigation a:hover::before {
  text-decoration: none;
}

/* Basic styles */
.nav-wrapper {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  transition: transform 0.2s;
}

.nav--hidden {
  transform: translateY(calc(-1 * var(--nav-height)));
  box-shadow: none;
}

nav {
  background: #333;
  padding: 0 20px;
  z-index: 1040;
  /* Mobile menu */
  /* Submenu up from mobile screens */
  /* Tablet menu */
  /* Desktop menu */
}
nav ul {
  padding: 0;
  margin: 0 auto 1.2rem auto;
}
nav a {
  color: white;
  text-decoration: none;
}
nav .menu,
nav .submenu {
  list-style-type: none;
  margin-top: 0;
  justify-content: space-between;
}
nav .logo {
  height: 80px;
  margin-right: 2rem;
}
nav .logo img {
  height: 100px;
  width: 100px;
}
@media (max-width: 736px) {
  nav .logo img {
    height: 80px;
    width: 80px;
  }
}
nav .item {
  padding: 10px;
}
nav .item:hover {
  cursor: pointer;
}
nav .item.active a:after {
  width: 0;
  height: 0;
  border-left: 10px solid rgba(230, 230, 230, 0.05);
  border-right: 10px solid transparent;
  border-bottom: 10px solid #37c0fb;
  display: block;
  position: absolute;
  bottom: -20px;
  content: "";
  left: 40%;
}
nav .item.button {
  padding: 9px 5px;
}
nav .item:not(.button) a:hover,
nav .item a:hover::after {
  color: #ccc;
}
nav .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
nav .menu li a {
  display: block;
  padding: 8px 5px;
}
nav .menu li.subitem a {
  padding: 15px;
}
nav .toggle {
  order: 1;
  font-size: 20px;
}
nav .item.button {
  order: 2;
}
nav .item {
  order: 3;
  width: 100%;
  text-align: center;
  display: none;
}
nav .active .item {
  display: block;
}
nav .button.secondary { /* divider between buttons and menu links */
  border-bottom: 1px #444 solid;
}
nav .submenu {
  display: none;
}
nav .submenu-active .submenu {
  display: block;
}
nav .has-submenu i {
  font-size: 12px;
}
nav .has-submenu > a::after {
  font-family: "Font Awesome 5 Free";
  font-size: 12px;
  line-height: 16px;
  font-weight: 900;
  content: "\f078";
  color: white;
  padding-left: 5px;
}
nav .has-submenu.submenu-active > a::after {
  font-family: "Font Awesome 5 Free";
  font-size: 12px;
  line-height: 16px;
  font-weight: 900;
  content: "\f077";
  color: white;
  padding-left: 5px;
}
nav .subitem a {
  padding: 10px 15px;
}
nav .submenu-active {
  background-color: #342925;
  border-radius: 3px;
}
@media all and (min-width: 700px) {
  nav {
    /* Button up from tablet screen */
  }
  nav .menu {
    justify-content: space-between;
    margin: 0 auto 1.2rem auto;
  }
  nav .item.button {
    width: auto;
    order: 1;
    display: block;
  }
  nav .toggle {
    flex: 1;
    text-align: right;
    order: 2;
  }
  nav .menu li.button a {
    padding: 10px 15px;
    margin: 5px 0;
  }
  nav .button a {
    background: #0080ff;
    border: 1px royalblue solid;
  }
  nav .button.secondary {
    border: 0;
  }
  nav .button.secondary a {
    background: transparent;
    border: 1px #0080ff solid;
  }
  nav .button a:hover {
    text-decoration: none;
  }
  nav .button:not(.secondary) a:hover {
    background: royalblue;
    border-color: darkblue;
  }
}
@media all and (min-width: 980px) {
  nav .menu {
    align-items: flex-end;
    flex-wrap: nowrap;
    background: none;
  }
  nav .logo {
    order: 0;
  }
  nav .item {
    order: 1;
    position: relative;
    display: block;
    width: auto;
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
  nav .button {
    order: 2;
  }
  nav .submenu-active .submenu {
    display: block;
    position: absolute;
    left: 0;
    top: 68px;
    background: #342925;
  }
  nav .toggle {
    display: none;
  }
  nav .submenu-active {
    border-radius: 0;
  }
}

nav:after {
  content: "";
  display: block;
  width: calc(100% + 40px);
  height: 0.75em;
  background-color: #37c0fb;
  margin-left: -20px;
}

/* container */
.responsive-two-column-grid {
  display: block;
}

/* tablet breakpoint */
@media (min-width: 736px) {
  .responsive-two-column-grid {
    display: grid;
    gap: 3rem;
  }
  .responsive-two-column-grid.five-three {
    grid-template-columns: 5fr 3fr;
  }
  .responsive-two-column-grid.four-four {
    grid-template-columns: 4fr 4fr;
  }
}
footer {
  background-color: #292929;
  border-top: 1rem solid #37c0fb;
  color: #ececec;
  padding: 2rem;
}
footer a {
  color: #ececec;
  text-decoration: none;
  border-bottom: 1px transparent;
}
footer a:hover {
  border-bottom: 1px solid #67c1e8;
  color: #67c1e8;
  transition: color 0.3s ease-in-out, border-bottom-color 0.4s ease-in-out;
}
footer .form-control {
  margin: 0.5rem 0;
}
footer button {
  background-color: transparent;
  color: #ececec;
  border: 3px solid #ececec;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 1rem 2rem;
}
footer button:hover {
  border-color: #67c1e8;
  color: #67c1e8;
  transition: border-color 0.5s ease-in-out, color 0.5s ease-in-out;
}
footer site-info {
  color: #ececec;
  display: block;
  font-weight: 400;
  padding: 1rem 0;
}
footer footer-widgets {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 1fr auto;
  gap: 10px;
  justify-content: center;
}
footer footer-widgets .c1 {
  grid-column: auto/span 12;
}
@media screen and (min-width: 736px) {
  footer footer-widgets .c1-2-md {
    grid-column: auto/span 6;
  }
  footer footer-widgets .c1-md {
    grid-column: auto/span 12;
  }
}
@media screen and (min-width: 1280px) {
  footer footer-widgets .c1-3-lg {
    grid-column: auto/span 4;
  }
}
footer footer-widgets ul {
  line-height: 1.6;
  list-style-type: none;
  padding-left: 0;
}
footer footer-widgets > * {
  width: 100%;
}
footer footer-widgets input,
footer footer-widgets textarea {
  color: #67c1e8;
  font-size: 1.4rem;
  font-weight: 300;
  padding: 1rem 0.5rem;
  width: 100%;
  height: 3rem;
  background: rgba(212, 212, 255, 0.035);
  border: 0;
}
footer footer-widgets contact-form form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0.6rem;
}
@media (max-width: 736px) {
  footer footer-widgets contact-form form button {
    grid-column: 1/-1;
  }
}
@media (min-width: 1280px) and (max-width: 1680px) {
  footer footer-widgets contact-form form button {
    grid-column: 1/-1;
  }
}
footer footer-widgets contact-form .form-group.comment {
  display: grid;
  grid-column-start: 1;
  grid-column-end: 3;
}
footer footer-widgets contact-form .hidden {
  display: none;
}
footer footer-widgets textarea {
  height: 7rem;
}

.comments {
  padding-top: 3rem;
}

.comment-reply-header {
  font-size: 1.6rem;
  font-family: "InterDisplay", "Source Sans Pro", sans-serif;
  font-weight: 600;
  margin-top: 2em;
  margin-bottom: 0.5em;
}

/* Accordion */
.accordion {
  border: 3px solid #e0e0e0;
  overflow: hidden;
  width: 100%;
}

.accordion button {
  width: 100%;
  display: block;
  background-color: rgb(250, 250, 250);
  color: rgb(0, 0, 0);
  padding: 24px;
  font-size: 20px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  text-align: left;
  border: none;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  cursor: pointer;
}

.accordion button:not(:first-of-type) {
  border-top: 3px solid #eaeaea;
}

.panel {
  background-color: #ffffff;
  display: none;
  height: 100%;
  margin: 0 2rem;
  padding: 1rem 0;
}
.panel p {
  margin: 24px;
}
.panel dl {
  margin-bottom: 0;
  margin-top: 0;
}
.panel dt {
  margin-bottom: 0.6rem;
  margin-top: 0.9rem;
}
.panel dd {
  border-bottom: 1px solid #f7f3ef;
  font-size: 1.02rem;
  margin-left: 0;
  padding-bottom: 1rem;
}
.panel ul {
  list-style-type: none;
  padding-left: 0;
}
.panel ul li {
  margin-bottom: 0.6rem;
  margin-top: 0.9rem;
}

.active {
  display: block;
}

.accordion-icon {
  transition: transform 0.5s;
}

.accordion-button.active .accordion-icon {
  transform: rotate(45deg);
}

/* Tabs */
.invisible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.recovery-log-tabs-tabs-tabs {
  border-bottom: 1px solid #ddd;
}
.recovery-log-tabs-tabs-tabs__list {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #ddd;
}
.recovery-log-tabs-tabs-tabs__item {
  display: inline-block;
}
.recovery-log-tabs-tabs-tabs__link {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: transparent;
  cursor: pointer;
  color: #148297;
}
.recovery-log-tabs-tabs-tabs__content {
  background: transparent;
  padding-bottom: 1rem;
  padding-top: 1rem;
}

[aria-selected=true].recovery-log-tabs-tabs-tabs__link {
  color: #000;
  background-color: transparent;
  border-bottom: 5px solid #7ba60d;
  color: inherit;
  font-weight: bold;
}
[aria-selected=true].recovery-log-tabs-tabs-tabs__link:hover {
  border-bottom: 5px solid #7ba60d;
  color: #000;
}

[aria-selected=false].recovery-log-tabs-tabs-tabs__link {
  border-bottom: 0;
  color: #000;
}
[aria-selected=false].recovery-log-tabs-tabs-tabs__link:hover {
  border-bottom: 5px solid #7ba60d;
  color: #000;
}

[aria-hidden=true].recovery-log-tabs-tabs-tabs__content {
  display: none;
}

.js-tablist__item a {
  border: 0;
}

/* Table of Contents */
#markdown-toc {
  background: #f8f9fc;
  border: 1px solid #d1d3e2;
  padding: 1rem 3rem;
}

/* NGS documents treeview */
.tree li {
  cursor: pointer;
  list-style-type: none;
  padding-left: 1.5rem;
}
.tree summary:focus {
  outline: none;
}
.tree summary:focus-visible {
  outline: 1px dotted #000;
}

/* Landing Pages Lists */
.browse-list {
  display: grid;
  gap: 2rem;
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.compact-list {
  margin: 0;
  padding-left: 2rem;
}

h3:has(+ .resources-list) {
  margin-bottom: 0.5em;
}

.resources-list {
  margin-top: 0.3em;
}
.resources-list dd {
  border-bottom: 1px solid #f7f3ef;
  font-size: 1.02rem;
  margin-left: 0;
  padding-bottom: 1rem;
}
.resources-list dd:last-child {
  border-bottom: 0;
}
.resources-list dt {
  margin-bottom: 0.6rem;
  margin-top: 0.9rem;
}
.resources-list.border {
  border: 1px solid #ddd;
  padding: 0.5rem 1.2rem;
}

.dl-horizontal dt {
  font-weight: 500;
}
@media (min-width: 840px) {
  .dl-horizontal dt {
    float: left;
    text-align: left;
    width: 300px;
  }
  .dl-horizontal dd {
    margin: 0 1.5em 0.1em 310px;
  }
}

.indented-list {
  list-style-type: disc;
  margin-left: 2em;
}

/* YouTube */
.embed-youtube {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.embed-youtube iframe,
.embed-youtube object,
.embed-youtube embed {
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Image galleries */
.justified-gallery a {
  border-bottom: 0;
}
.justified-gallery a:hover {
  border-bottom-width: 0;
}

.lg-sub-html {
  background-color: rgba(0, 0, 0, 0.5);
}

/* Scroll to top */
#scroll-to-top {
  background-color: rgba(0, 0, 0, 0.4);
  border-style: none;
  border-radius: 3px;
  bottom: 20px;
  color: white;
  cursor: pointer;
  display: none;
  font-size: 18px;
  font-weight: 700;
  outline: none;
  padding: 12px 12px 7px 12px;
  position: fixed;
  right: 30px;
  transition: all 3s ease-in-out;
  z-index: 99;
}
#scroll-to-top:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

@media (min-width: 736px) {
  .alignleft {
    float: left;
    margin-right: 2rem;
  }
}

@media (min-width: 736px) {
  .alignright {
    float: right;
    margin-left: 2rem;
  }
}

.clearboth {
  clear: both;
}

.force-wrap {
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
}

.box {
  background-color: #fafafa;
  border: 1px solid #d9d9d9;
  padding: 2rem;
}

.box-narrow {
  padding: 0.8rem;
}

@media (min-width: 736px) {
  .max-30-pct {
    max-width: 30%;
  }
}

.inline-block {
  display: inline-block;
}

/* Leaflet maps */
.map {
  width: 100%;
  height: 100%;
  position: relative;
}

.fullscreen-map-wrapper {
  position: relative;
  width: 100%;
  height: 900px;
}

/* Simple map includes */
.simple-map {
  display: flex;
  flex-direction: column;
  height: 490px;
  margin: 1em 0;
  width: 100%;
}
@media (min-width: 736px) {
  .simple-map.alignright {
    margin: 1em 0 1em 1.5em;
    width: 50%;
  }
}
.simple-map div[class*=number-icon-] {
  border-radius: 35px;
  color: #ffffff;
  text-align: center;
}
.simple-map .number-icon-blue {
  background-image: url("/assets/img/number-marker-icon-blue.png");
  text-align: center;
  padding-top: 8px;
  color: white;
}

/* Airway Beacons Map */
.leaflet-control-layers #counterValue {
  display: none;
}

.leaflet-control-layers-expanded #counterValue {
  display: block;
  font-size: 125%;
  font-weight: bold;
  padding: 6px 0;
  text-align: center;
}

/* Recoveries Map */
#leaflet-slider {
  margin: 15px;
  display: inline-block;
}

#recoveries-map .slider {
  background: white;
  box-shadow: 0 1px 7px rgba(0, 0, 0, 0.65);
  -webkit-border-radius: 4px;
  border-radius: 4px;
  text-align: center;
  padding: 8px 5px 5px 5px;
  position: relative;
}

#recoveries-map #slider-min, #slider-max, #slider-current, #slider {
  display: inline-block;
  margin: 0 5px 0 5px;
}

#slider-timestamp {
  margin-top: 13px;
  background-color: #FFFFFF;
  border-radius: 5px;
}

#slider-timestamp-max,
#slider-timestamp-min {
  display: inline-block;
}

/* PID Prefix Map */
#pidprefix-map .info {
  padding: 10px 12px;
  font: 14px/16px Arial, Helvetica, sans-serif;
  background: white;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}
#pidprefix-map .info h4 {
  margin: 0 0 5px;
  color: #777;
}

.surveymark-page {
  /* tablet breakpoint */
}
.surveymark-page .status span:nth-child(2) {
  display: flex;
  margin-top: 0.5em;
}
.surveymark-page h2 {
  font-size: 1.75rem;
  margin-bottom: 0.8rem;
}
.surveymark-page .data-wrapper b {
  color: #595959;
}
.surveymark-page .data-wrapper h2:first-child {
  margin-top: 0;
}
.surveymark-page .data-wrapper ul {
  list-style-type: none;
  padding: 0;
}
.surveymark-page .data-wrapper tr > td:nth-child(2) {
  padding-left: 2rem;
}
.surveymark-page .data-wrapper td {
  padding: 0.1rem 0;
  vertical-align: top;
}
.surveymark-page .data-wrapper .plane-coords {
  border-collapse: collapse;
  font-size: 90%;
  margin-top: 1rem;
}
.surveymark-page .data-wrapper .plane-coords thead > tr:first-child {
  border-bottom: 1px solid gray;
}
.surveymark-page .data-wrapper .plane-coords tr > td:nth-child(2) {
  padding-left: 0;
}
.surveymark-page .data-wrapper .plane-coords th,
.surveymark-page .data-wrapper .plane-coords td {
  padding: 1rem 2rem 1rem 0;
}
.surveymark-page .map-wrapper {
  display: flex;
  flex-direction: column;
  height: 350px;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .surveymark-page .map-wrapper {
    height: 500px;
    margin-top: 0;
  }
}
.surveymark-page .map-wrapper h1 {
  font-size: 1.5rem;
  margin: 0;
}
.surveymark-page .map-wrapper p {
  margin: 0;
}
.surveymark-page .responsive-two-columns {
  display: block;
  column-gap: 1rem;
}
@media (min-width: 768px) {
  .surveymark-page .responsive-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.surveymark-page .ngs-recovery-info {
  margin-bottom: 2em;
}
.surveymark-page .ngs-recovery-info .parent {
  display: grid;
  font-size: 1.1rem;
  grid-template-columns: 1fr;
}
.surveymark-page .ngs-recovery-info h3 {
  border-bottom: 1px solid #a7a7a7;
  font-size: 1.2rem;
  font-weight: 700;
  padding-bottom: 0.3em;
}
.surveymark-page .ngs-recovery-info .ngs-photo-status,
.surveymark-page .ngs-recovery-info .ngs-coords-status {
  display: block;
  margin-bottom: 0.5em;
}
.surveymark-page .ngs-recovery-info .ngs-photo-status.true i,
.surveymark-page .ngs-recovery-info .ngs-coords-status.true i {
  color: green;
}
.surveymark-page .ngs-recovery-info .ngs-photo-status.false,
.surveymark-page .ngs-recovery-info .ngs-coords-status.false {
  color: #a3a3a3;
}
@media (min-width: 736px) {
  .surveymark-page .ngs-recovery-info .parent {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 8px;
  }
  .surveymark-page .ngs-recovery-info .ngs-descriptive-text {
    grid-column: span 3/span 3;
    grid-row: span 2/span 2;
    grid-column-start: 2;
    grid-row-start: 1;
  }
  .surveymark-page .ngs-recovery-info h3 {
    margin-top: 0;
  }
}
.surveymark-page .official-description,
.surveymark-page .usgs-report {
  margin-top: 1.2rem;
}
.surveymark-page .state,
.surveymark-page .county,
.surveymark-page .quad {
  text-transform: capitalize;
}
.surveymark-page .recovery-notes {
  margin-top: 1.5rem;
}
.surveymark-page .recovery-date {
  margin-top: 1.5rem;
}
.surveymark-page .referenceMarks img {
  height: 150px;
  object-fit: cover;
  width: 150px;
}
.surveymark-page .referenceMarks caption {
  font-size: 1.17em;
  font-weight: 600;
  margin: 1.5rem 0;
  text-align: left;
}

.mark-count {
  font-weight: 200;
}

.widget__panel {
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}
.widget__panel .card {
  background-color: #fff;
  padding: 1rem;
  padding-bottom: 0.6rem;
}
.widget__panel .card img {
  border: 1px solid #9e9e9e;
  height: 150px;
  object-fit: cover;
  width: 150px;
}
.widget__panel .card h2 {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  margin: 0;
  text-align: center;
}
@media (min-width: 600px) {
  .widget__panel {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .widget__panel {
    grid-template-columns: repeat(4, 1fr);
  }
}

.widget__wrapper.recoveries a,
.widget__wrapper.recoveries a:hover {
  border-bottom: 0;
  color: #474747;
  text-decoration: none;
}
.widget__wrapper.recoveries .nfMarks a,
.widget__wrapper.recoveries .noteMarks a {
  border-bottom: 1px dotted #7ba60d;
  color: #7ba60d;
}
.widget__wrapper.recoveries .nfMarks a:hover,
.widget__wrapper.recoveries .noteMarks a:hover {
  border-bottom: 1px solid #a1cf2d;
  color: #a1cf2d;
  transition: color 0.3s ease-in-out;
}
.widget__wrapper.recoveries .nfMarks ul,
.widget__wrapper.recoveries .noteMarks ul {
  margin-left: 1rem;
}

.widget__controls-wrapper {
  border: 3px solid #eaeaea;
}
.widget__controls-wrapper h3.widget__heading:not(:first-of-type) button {
  border-top: 3px solid #eaeaea;
}
@media (min-width: 768px) {
  .widget__controls-wrapper h3.widget__heading:not(:first-of-type) button {
    border-top: 0;
  }
}
@media (min-width: 768px) {
  .widget__controls-wrapper {
    border: 0;
  }
}

.widget__heading {
  margin: 0;
}
@media (min-width: 768px) {
  .widget__heading button {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .widget__heading button:hover {
    border-bottom: 5px solid #7ba60d;
    transition: all ease 0.07s;
  }
}

details {
  margin-bottom: 2px;
}

details div {
  padding: 8px;
}

summary {
  padding: 8px 10px;
  font-weight: bold;
}

summary:focus-visible {
  outline: 2px solid transparent;
}

.widget__btn {
  width: 100%;
  display: block;
  background-color: rgb(250, 250, 250);
  color: rgb(0, 0, 0);
  padding: 24px;
  font-size: 20px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  text-align: left;
  border: 0;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  cursor: pointer;
}
@media (min-width: 768px) {
  .widget__btn {
    padding: 8px 10px;
  }
}

.widget__btn[aria-expanded] {
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
}

.widget__btn[aria-expanded]::before,
.widget__btn[aria-expanded]::after {
  content: "";
  position: absolute;
}

.widget__btn[aria-expanded]::before {
  right: 20px;
  height: 20px;
  width: 6px;
  transition: transform ease-in 100ms;
}

.widget__btn[aria-expanded]::after {
  right: 13px;
  height: 6px;
  width: 20px;
}

.widget__btn[aria-expanded=true]::before {
  transform: scaleY(0);
}

.widget__btn[aria-expanded]:focus-visible {
  outline: 2px solid transparent;
}

.widget__btn[aria-expanded]:focus-visible::before,
.widget__btn[aria-expanded]:focus-visible::after {
  background-color: var(--colour-bg);
}

.widget__panel[role=region] {
  position: relative;
  top: -2px;
  border: 2px solid var(--colour-interactive);
  border-top: none;
  padding: 8px;
}

[role=tablist] {
  display: flex;
  gap: 2px;
}

[role=tab] {
  border: 1px solid var(--colour-interactive);
  border-bottom: none;
  border-radius: 3px 3px 0 0;
  background-color: white;
}

[role=tab][aria-selected=true] {
  border-bottom: 5px solid #7ba60d;
}

[role=tab][aria-selected=true]::before,
[role=tab][aria-selected=true]::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
}

[role=tab][aria-selected=true]::before {
  top: 0;
  height: 0;
}

[role=tab][aria-selected=true]::after {
  bottom: -1px;
  width: 100%;
  height: 3px;
}

[role=tabpanel] {
  padding: 1rem 0;
}

[role=tab]:focus-visible {
  outline-offset: -8px;
}

[role=tabpanel]:focus-visible {
  position: relative;
  z-index: 1;
}

[hidden],
[data-expanded=false] + .widget__panel {
  display: none;
}

@media screen and (forced-colors: active) {
  summary:focus-visible {
    outline-width: 3px;
    outline-offset: 3px;
  }
  .widget__btn[aria-expanded]::before,
  .widget__btn[aria-expanded]::after {
    background-color: ButtonText;
  }
  .widget__btn {
    background-color: Window;
  }
  .widget__btn[aria-controls]:focus {
    background-color: Window;
  }
  .widget__btn[aria-expanded]:focus::before,
  .widget__btn[aria-expanded]:focus::after {
    background-color: ButtonText;
  }
  [role=tab][aria-selected=true]::after {
    background-color: Window;
  }
}
.airway-beacons-table {
  font-size: 75%;
}

.home #banner {
  width: 100%;
  background-image: url(/assets/img/dave-hoefler-cls3zN5wte0-unsplash.jpg);
  background-image: url(/assets/img/k10g3c-2.jpg);
  background-position: center bottom;
  background-size: cover;
  height: 28em;
  text-align: center;
  position: relative;
}
@media (max-width: 736px) {
  .home #banner {
    height: 18em;
  }
}
.home #profileImage {
  background-color: #ffffff;
  border-radius: 50%;
  float: right;
  height: auto;
  max-width: 170px;
  padding: 4px;
  box-shadow: 0 1px 2px #666666;
}
@media (max-width: 736px) {
  .home #profileImage {
    max-width: 100px;
    padding: 3px;
  }
}
.home .background {
  background-image: url("/assets/img/stacked-waves-haikei-greenish.png");
  background-size: cover;
  background-position: center;
  height: auto;
  width: 100%;
}
.home header {
  display: grid;
  grid-template-areas: "hero";
  height: 28em;
  max-height: 600px;
  padding: 2rem 1rem;
  align-items: center;
  justify-content: center;
}
@media (max-width: 736px) {
  .home header {
    height: 18em;
  }
}
.home header > * {
  grid-area: hero;
}
.home header .hero__content {
  text-align: left;
  max-width: 800px;
}
.home header .hero__content h1 {
  color: #ffffff;
  font-size: 3rem;
  margin-top: 0;
  text-shadow: 2px 2px 5px black;
}
@media (max-width: 736px) {
  .home header .hero__content h1 {
    font-size: 2rem;
  }
}
.home header .hero__content p {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 400;
  text-shadow: 2px 2px 5px black;
}
@media (max-width: 736px) {
  .home header .hero__content p {
    font-size: 1rem;
  }
}
.home header .hero__content .button {
  background: #484848;
  border: 2px solid #45e7fa;
  border-radius: 2px;
  color: #42ebff;
  font-size: 1.02rem;
  font-weight: 400;
  padding: 0.5rem 0.9rem;
}
.home header .hero__content .button:hover {
  background: #45e7fa;
  color: #484848;
}
.home .blog {
  padding: 2rem 2rem 5rem 2rem;
}
.home .blog .header-row {
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
}
.home .blog h3 {
  margin-top: 0;
}
.home .blog .grid-item {
  flex-direction: row;
  gap: 2rem;
}
.home .recent-recoveries {
  padding: 2rem 2rem 3rem 2rem;
}
.home .recent-recoveries .header-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.home .recent-recoveries .img-container {
  width: 25%;
}
.home .recent-recoveries img {
  float: left;
  margin-right: 2rem;
  width: 100%;
  border-radius: 50%;
  padding: 5px;
  box-shadow: rgb(102, 102, 102) 0px 1px 2px;
}
.home .recent-recoveries .grid-item {
  flex-direction: row;
  gap: 2rem;
}
.home .recent-recoveries h3 {
  margin-top: 0.3em;
}
@media (min-width: 980px) {
  .home .recent-recoveries h3 {
    margin-top: 1.404rem;
  }
}

.zhannas-recoveries {
  margin-top: 1rem;
  padding: 0 1rem;
}
@media (min-width: 736px) {
  .zhannas-recoveries {
    margin: 1rem;
    padding: 0 2rem;
  }
}

/*# sourceMappingURL=main.css.map */