html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

main, article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

img, svg, video, canvas,
audio, iframe, embed, object {
  display: block;
  vertical-align: middle;
}

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

a img, :link img, :visited img {
  border: none;
}

b, strong {
  font-weight: bolder;
}

em {
  font-style: italic;
}

small {
  font-size: 80%;
}

button {
  font-family: inherit;
  line-height: inherit;
  text-align: inherit;
  color: inherit;
  background-color: inherit;
  padding-inline: 0;
  padding-block: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #333;
}

@keyframes appear {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes disappear {
  from { opacity: 1; }
  to { opacity: 0; }
}

:root {
  --gaz-accent-color: #01828E;
  --gaz-bright-link: #34cbd9;
  --gaz-bg-color: #002745;
  --gaz-text-color: #000000;
  --gaz-link-color: #2171b5;
  --gaz-text-reverse: #ffffff;
  --gaz-content-fg: #000000;
  --gaz-content-bg: #e3e3e3;
  --gaz-button-border: #333333;
  --gaz-nav-background: #134940;
  --gaz-category-bg: #00352f;
  --gaz-category-active: #007d64;
  --gaz-modal-bg: #e8e8e8;
}

html {
  color: #e3e3e3;
  background-color: #002745;
}

body {
  font-family: 'Red Hat Text', sans-serif;
  line-height: 1.25;
  -webkit-font-smoothing: antialiased;
}

a:link,
a:visited,
a:hover {
  color: var(--gaz-link-color);
  text-decoration: underline;
  cursor: pointer;
}

a.info-faq {
  display: block;
  font-weight: 600;
  padding: 4px 7px;
  color: #ffffff;
  background-color: #01828E;
  border-radius: 4px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
}

button.favorites-button {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 6px;
  padding: 3px 4px 2px 4px;
  border-radius: 4px;
  border: 1.5px solid #ec4841;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
}

button.favorites-active {
  color: #fff;
  background-color: #ec4841;
  border: 1.5px solid #ec4841;
}

a.ticket {
  font-family: 'Helvetica','Arial',sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px;
  border-radius: 4px;
  color: #ffffff;
  background-color: var(--gaz-accent-color);
  text-decoration: none;
  cursor: pointer;
  border: none;
}

a.showpass {
  font-family: 'Helvetica','Arial',sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 10px;
  border-radius: 7px;
  color: #ffffff;
  background-color: var(--gaz-accent-color);
  text-decoration: none;
  cursor: pointer;
  border: none;
}

h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0px;
}

.only-narrow {
  display: none;
}

.only-wide {
  display: initial;
}

dialog {
  width: min(100%, 900px);
  height: min(100%, 700px);
  max-width:  inherit;
  max-height: inherit;
  border-radius: 20px;
  margin-top: 50px;
  padding: 0;
  filter: drop-shadow(5px 5px 25px #00000066);
  color: var(--gaz-text-color);
  background-color: var(--gaz-modal-bg);
}

dialog::backdrop {
  background: rgb(0 0 0 / 15%);
}

.card-nav {
  font-size: 2.5rem;
  justify-content: space-between;
}

.card-nav > div {
  flex-basis: 120px;
}

.card-nav a {
  padding: 15px 15px;
}

.card-nav .fave-toggle {
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
}

.card-nav .count {
  font-size: 1.5rem;
  min-width: 1rem;
}

main {
  max-width: 1100px;
  margin: 0 auto 0 auto;
}

header {
  position: relative;
  display: flex;
  max-width: 1100px;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  margin: 15px auto 25px auto;
}

header .edition {
  flex-basis: 250px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

header .edition .layout {
  display: flex;
  flex-direction: column;
  margin-top: 5px;
  margin-left: 10px;
  margin-right: 10px;
  row-gap: 6px;
}

header .edition .home {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

header .edition .view-links {
  display: flex;
  flex-direction: row;
  font-size: 1.0rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  column-gap: 8px;
}

header .edition div.sep {
  font-weight: 700;
  opacity: 0.5;
}

header .edition div.sep::before {
  content: "❘";
}

header .edition .sorting {
  display: flex;
  font-weight: 400;
  margin-top: 5px;
  flex-direction: row;
  column-gap: 5px;
}

header .edition .sorting .active {
  font-weight: 700;
}

header .edition .series-active {
  display: inline-block;
  width: 10px;
}

header .edition .series-space {
  display: inline-block;
  width: 10px;
}

header .masthead {
  display: flex;
  flex-direction: column;
}

header .masthead .layout {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

header img.logo {
  width: 300px;
}

header img.presenter {
  width: 98px;
  margin-top: 15px;
  margin-left: 10px;
}

header .action {
  flex-basis: 250px;
  flex-shrink: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  font-size: 1.0rem;
  line-height: 1;
}

header .action .layout {
  display: flex;
  flex-direction: column;
  margin-top: 5px;
  margin-left: 10px;
  margin-right: 10px;
  row-gap: 7px;
}

header .action .layout > div {
  text-align: right;
}

header .view-toggle {
  display: flex;
  flex-direction: row;
}

header a:hover,
header a:visited,
header a:link {
  color: #ffffff;
  text-decoration: none;
}

header a:hover {
  text-decoration: underline;
}

header a.active {
  color: var(--gaz-bright-link);
}

footer {
  max-width: 1100px;
  display: flex;
  flex-direction: row;
  margin: 20px auto 100px auto;
}

footer nav {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

footer nav > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

footer nav .contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  gap: 5px;
}

footer nav .page-links {
  font-size: 1.0rem;
  text-align: left;
  margin-left: 15px;
  max-width: 390px;
}

footer nav .page-links li {
  display: inline-block;
  margin: 5px 7px;
}

footer nav .page-links a {
  color: #fff;
  text-decoration: none;
}

footer nav .page-links a:hover {
  color: #fff;
  text-decoration: underline;
}

footer nav .social-links {
  flex-shrink: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: 10px;
  margin-left: 10px;
  gap: 5px;
}

.alert-panel .fa-solid,
.alert-panel a ,
.alert-panel {
  color: #d44f4f;
}

.alert-panel {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.intro-panel {
  max-width: 1100px;
  margin: 0 auto 0 auto;
}

.intro-panel .layout {
  flex: 1;
  display: flex;
  flex-direction: row;
  min-height: 140px;
  margin-left: 10px;
  margin-right: 10px;
  padding-top: 10px;
  padding-bottom: 20px;
}

.intro-panel .layout .intro-left {
  flex: 4;
}

.intro-panel .layout .intro-right {
  flex: 6;
}

.intro-part .fa-solid,
.intro-part a {
  color: #ddb26a;
}

.intro-part li {
  padding-left: 2px;
  padding-top: 1px;
  padding-bottom: 1px;
}

.intro-part .fa-solid {
  display: inline-block;
  min-width: 1.6rem;
  font-size: 1.0rem;
}

.carousel-view {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  column-gap: 5px;
}

.carousel-image {
  transition: width 2s;
  transition-timing-function: ease-in-out;
}

main.map {
  color: #000;
  background-color: #fff;
}

main.map .map-status {
  color: #fff;
  position: absolute;
  inset: 100px 100px 100px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

main.map #gaz-map-container {
  position: absolute;
  inset: 125px 0 0 0;
}

main.map #locate-btn {
  position: absolute;
  top: 135px;
  left: 10px;
  z-index: 5;
  background-color: #fff;
}

main.map #locate-btn .fa-solid {
  font-size: 1.5rem;
  padding: 10px;
}

main.map #locate-btn.running .fa-solid {
  color: #ff6d00;
}

.map-area .named-marker-inner {
  font-weight: 600;
  font-size: 0.8rem;
  line-height: 1;
  text-align: center;
  padding: 4px 5px;
  box-shadow: 3px 3px 7px #0002;
  border-radius: 5px;
}

.map-area .named-marker-outer {
  max-width: 110px;
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  z-index: 4;
}

.map-area .named-marker-outer::after {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #fff;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  top: 95%;
  transform: translate(-50%);
  width: 0;
  z-index: 4;
}

.listings-popup {
  font-size: 0.75rem;
}

.listings-popup .day-picker {
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-size: 1.1rem;
}

.listings-popup .day-picker button {
  padding: 6px 8px 0px 8px;
  font-weight: 700;
}

.listings-popup .day-picker button.active {
  color: #2a89d9;
}

.listings-popup .layout {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 4px;
  row-gap: 4px;
}

.listings-popup .time {
  font-weight: 400;
  text-align: right;
  line-height: 1;
}

.listings-popup .title {
  font-weight: 500;
  line-height: 1;
}

.icon-marker-outer {
  color: #000a; /* ? */
}

.location-self.fa-solid {
  font-size: 1.9rem;
  color: #ff6d00;
}

.map-area .fa-solid {
  font-size: 1.4em;
  color: #333c;
}

.icon-marker-outer .fa-solid {
  padding: 4px;
}

.map-area .fa-solid.fa-circle-parking {
  font-size: 1.6rem;
  color: #1973e8
}

.map-area .fa-solid.fa-cars {
  font-size: 1.35rem;
  color: #134c97
}

.map-area .fa-beer-mug {
  font-size: 1.5em;
  color: #e87700;
}

.map-area .fa-store {
  font-size: 1.15em;
}

.map-area .fa-burger-soda {
  font-size: 1.3em;
}

.map-area .fa-glass-water-droplet {
  font-size: 1.6em;
}

.map-area .fa-compact-disc {
  font-size: 1.6em;
}

.map-area .fa-circle-info {
  font-size: 1.5em;
}

.map-area .fa-solid.fa-compact-disc,
.map-area .fa-solid.fa-glass-water-droplet,
.map-area .fa-solid.fa-restroom-simple,
.map-area .fa-solid.fa-circle-info {
  color: #1973e8;
}

.focus-icon {
  font-size: 2em;
  color: #ea4336;
}

.focus-marker {
  padding: 5px;
  border: #ea4336 solid 5px;
  border-radius: 15px;
}

@media (max-width: 759px) {
  header .edition div.sep {
    display: none;
  }
  header .action {
    font-size: 0.9rem;
  }
  header img.logo {
    width: 260px;
  }
}

@media (max-width: 619px) {
  header {
    margin: 80px auto 14px auto;
  }
  header .edition {
    flex-basis: inherit;
  }
  header .edition .home-links {
    margin-bottom: 2px;
  }
  header .edition .home {
    font-size: 1.2rem;
    line-height: 1.3rem;
  }
  header .edition .layout {
    margin-top: 0;
    margin-left: 7px;
    margin-right: 5px;
  }
  header .edition .view-links {
    font-size: 0.8rem;
    column-gap: 10px;
  }
  header .masthead .layout {
    position: absolute;
    top: -70px;
    left: 0px;
    right: 0px;
  }
  header img.logo {
    width: 180px;
  }
  header img.presenter {
    margin-top: 8px;
    width: 80px;
  }
  header .action {
    font-size: 0.85rem;
  }
  header .action .layout {
    margin-top: 0px;
    margin-right: 7px;
    row-gap: 5px;
  }
  footer nav > div {
    justify-content: flex-start;
  }
  footer nav .contact {
    font-size: 0.8rem;
    align-items: flex-start;
    margin-left: 10px;
    gap: 2px;
  }
  footer nav .social-links {
    justify-content: flex-end;
  }
  .only-narrow {
    display: initial;
  }
  .only-wide {
    display: none;
  }
  main.map #gaz-map-container {
    position: absolute;
    inset: 145px 0 0 0;
  }
  main.map #locate-btn {
  top: 164px;
}
}


main.error {
  color: var(--gaz-content-fg);
  background-color: var(--gaz-content-bg);
  border-radius: 10px;
  padding: 30px;
  font-size: 1.2rem;
}

main.list {
  color: #000;
  background-color: #fff;
  border-radius: 5px;
}

.ncff .catalog {
  color: var(--gaz-content-fg);
  background-color: var(--gaz-content-bg);
  border-radius: 5px;
  gap: 8px;
  margin-top: 15px;
  margin-left: 8px;
  margin-right: 8px;
  padding: 10px 10px 30px 10px;
}

@media (max-width: 950px) {
  .intro-panel .layout {
    min-height: inherit;
  }
  .intro-panel .intro-right {
    display: none;
  }
}

.ncff .catalog .item {
  flex-direction: column-reverse;
}

.ncff .catalog .item .info {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 4px 5px 10px 3px;
  font-size: 1.1rem;
  line-height: 1.15;
  font-weight: 500;
}

.catalog .item .info .genre {
  order: 1;
}

.catalog .item .info .subtitle {
  order: 1;
}

.catalog .item .info .hometown {
  order: 2;
}

.catalog .item .info .titles {
  order: 3;
}

.catalog .item .info .listings {
  order: 4;
}

.ncff .catalog .item h3.title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.0;
  margin-top: 2px;
  margin-bottom: 2px;
}

.ncff .catalog .item .genre {
  font-size: 0.9rem;
  color: #00747f;
  margin-top: 1px;
  margin-bottom: 1px;
}

.ncff .catalog .item .subtitle {
  font-size: 0.9rem;
  margin-top: 2px;
  margin-bottom: 2px;
  color: #00747f;
}

.ncff .catalog .item .hometown {
  font-size: 0.84rem;
  color: #303030;
  margin-top: 1px;
  margin-bottom: 1px;
}

.ncff .catalog .item .when {
  margin-top: 2px;
  margin-bottom: 2px;
  font-size: 0.8rem;
}

.ncff .catalog .item .when .fa-solid {
  font-size: 1em;
  color: inherit;
  margin-left: 10px;
}

.ncff .catalog .item .and-more {
  font-size: 0.8rem;
}

@media (max-width: 419px) {
  .ncff .catalog {
    gap: 20px;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (width >= 920px) {
  .ncff .catalog {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (width < 920px) {
  .ncff .catalog {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (width < 620px) {
  .ncff .catalog {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width < 420px) {
  .ncff .catalog {
    grid-template-columns: repeat(1, 1fr);
  }
  .ncff .catalog .item .info {
    margin-left: 5px;
  }
}

.catalog .info a:link {
  color: #000;
  text-decoration: none;
}
.catalog .info a:visited {
  color: #000;
  opacity: 0.5;
}
.catalog .info a:hover {
  text-decoration: underline;
}

.ncff .catalog .item .pic {
  aspect-ratio: 7/5;
}

.ncff .catalog .item .pic img {
  aspect-ratio: 7/5;
}

.catalog .pic .fave-toggle {
  font-size: 1.9rem;
  position: absolute;
  top: 5px;
  right: 5px;
}

.catalog .pic a.favorite:hover,
.catalog .pic a.favorite {
  color: #ffffff;
}

.catalog .overlay {
  display: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

main.auth {
  color: var(--gaz-content-fg);
  background-color: var(--gaz-content-bg);
}

.auth-form {
  margin-left: 45px;
  padding-top: 30px;
  padding-bottom: 45px;
}

.auth-acct-status {
  margin-bottom: 15px;
}

main.info {
  color: var(--gaz-content-fg);
  background-color: var(--gaz-content-bg);
  padding: 0 30px 30px 30px;
  margin-bottom: 30px;
  border-radius: 5px;
}

.information {
  font-size: 1.1rem;
}

.information h1 {
  padding-top: 30px;
}

.information h3 {
  padding-top: 10px;
}

.information > p {
  margin-top: 5px;
  margin-bottom: 15px;
  max-width: 750px;
}

.information li {
  list-style: square;
  list-style-position: outside;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 20px;
  max-width: 800px;
}

.information ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  max-width: 800px;
}

main.item {
  color: var(--gaz-content-fg);
  background-color: var(--gaz-content-bg);
  padding: 30px 0px 30px 0px;
  margin-bottom: 30px;
}

.ncff .item-side .fill {
  aspect-ratio: 7/5;
  background-color: inherit;
}

.ncff .item-side .fill img {
  aspect-ratio: 7/5;
  width: 100%;
  margin-bottom: 20px;
}

.ncff .item-topper .fill img {
  aspect-ratio: 7/5;
  width: 100%;
}

.ncff .item-video-below {
  padding-bottom: 50px;
}

.ncff .item-details .item-title {
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 700;
}

.ncff .item-details .item-subtitle {
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 700;
  margin-top: 5px;
}

.ncff .item-details .item-genre {
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 700;
  margin-top: 5px;
}

.ncff .item-details .item-hometown {
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 600;
  margin-top: 5px;
}

.ncff .item-details .start-date {
  font-size: 1.2rem;
  font-weight: 600;
}

.ncff .item-details .start-time {
  font-size: 1.0rem;
  font-weight: 500;
}

.ncff .item-details ul.related {
  line-height: 1.5;
}

.ncff .item-details ul.related li {
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 18px;
  line-height: 1.2;
}

.ncff .item-details ul.related li::before {
  content: "￭";
  color: #5E7C41;
  margin-left: -12px;
  margin-right: 5px;
}

.ncff .item-details .listing-message {
  font-family: 'Helvetica','Arial',sans-serif;
  font-size: 1.0rem;
  font-weight: 400;
  max-width: 320px;
}

.item-details .listing-when {
  position: relative;
}

.item-details .flag-icons {
  position: absolute;
  top: 10px;
  right: 10px;
}

.item-details .flag-icons .fa-solid {
  font-size: 1.75em;
  color: inherit;
  opacity: 0.8;
}

.favorites-empty {
  font-size: 1.1rem;
  font-weight: 700;
  padding: 10px 10px;
  line-height: 1.1;
}

.favorites-empty .icon {
  font-size: 2.0rem;
  margin-bottom: 10px;
}

.grid-page .favorites-empty {
  background-color: #fff;
}

.map-info-box {
  font-family: 'Red Hat Text', sans-serif;
  color: #000;
}

.map-info-box.venue .name,
.map-info-box.venue .info {
  text-align: center;
}

.map-info-box .name {
  font-weight: 800;
}

.map-info-box .info {
  font-weight: 600;
}

.map-info-box em {
  font-style: italic;
}

.map-info-box .navigate {
  margin-top: 5px;
  text-align: center;
}

.map-info-box .navigate span {
  font-size: 1.75em;
  cursor: pointer;
}

main.grid-page {
  color: var(--gaz-content-fg);
}

main.grid-wide {
  max-width: inherit;
}

main.grid-page .alert-panel .fa-solid,
main.grid-page .alert-panel a ,
main.grid-page .alert-panel {
  color: #d44f4f;
}

main.grid-page .alert-panel {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 15px;
}


.ncff .grid-group {
  margin-bottom: 30px;
}

.ncff .grid-layout {
  background-color: #ebe4cc;
}

.ncff .grid-header {
  position: sticky;
  top: 0;
  z-index: 2;
}

.ncff .day-title {
  display: flex;
  justify-content: center;
  color: #000;
  background-color: #ffffff;
  padding: 20px 10px 15px 10px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.day-title h2 {
  font-size: 23px;
  font-weight: 700;
  margin: 0;
}

.ncff .grid-places {
  background-color: #ebe4cc;
  padding-top: 5px;
  padding-bottom: 2px;
}

.ncff .grid-cap {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.grid-cap .fa-solid {
  color: #000b;
  font-size: 0.8em;
  margin-top: 4px;
}

.ncff .grid-place {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #000;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  background-color: #fff;
  margin-left: 5px;
  margin-right: 5px;
  padding-left: 2px;
  padding-right: 2px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.ncff .grid-layout .hash-hour {
  display: flex;
  padding-left: 9px;
  font-size: 0.9rem;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff99;
  border-left: none;
  border-right: none;
}

.ncff .grid-spot {
  display: flex;
  flex-direction: column;
}

.ncff .grid-item {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #000;
  background-color: #fff;
  margin-top: 1px;
  margin-bottom: 1px;
  margin-left: 5px;
  margin-right: 5px;
  border-radius: 4px;
  cursor: pointer;
}

.ncff .grid-item a.title {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.1;
  text-decoration: none;
  text-align: center;
  margin-left: 2px;
  margin-right: 2px;
}

.ncff .grid-item a.time {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  text-align: center;
  margin-top: 3px;
}

.grid-item .time .fa-solid {
  font-size: 1em;
  color: inherit;
  opacity: 0.65;
  margin-left: 10px;
}

.grid-item .fave-display {
  font-size: 1.1rem;
  color: #ffffff;
  position: absolute;
  top: 3px;
  right: 3px;
}

@media print {
  html {
    color: #000;
    background-color: inherit;
  }
  header {
    margin: 5px;
    max-width: inherit;
  }
  header .edition {
    display: none;
  }
  header .masthead {
    flex: 1;
  }
  header .action {
    display: none;
  }
  footer {
    display: none;
  }
  .grid-item {
    border: 1px solid #000;
    page-break-inside: avoid;
  }
  .grid-group {
    page-break-after: always;
  }
}

@media (max-width: 619px) {
  .ncff .grid-place {
    font-size: 13px;
  }
  .ncff .grid-item a.title {
    font-size: 12px;
  }
  .ncff .grid-item a.time {
    font-size: 13px;
  }
  .ncff .grid-day-title {
    font-size: 17px;
  }
  .ncff .grid-places {
    padding-top: 0;
  }
  .ncff .grid-place {
    margin-left: 1px;
    margin-right: 1px;
  }
  .ncff .grid-item {
    margin-left: 1px;
    margin-right: 1px;
  }
}

.map-area  .location-cone-health-citystage,
.grid-cap  .location-cone-health-citystage,
.grid-spot .location-cone-health-citystage {
  background-color: #f0c585;
}

.map-area  .location-cone-health-citystage::after {
  border-top-color: #f0c585;
}

.map-area  .location-lawn-stage,
.grid-cap  .location-lawn-stage,
.grid-spot .location-lawn-stage {
  background-color: #c6dcad;
}

.map-area  .location-lawn-stage::after {
  border-top-color: #c6dcad;
}

.map-area  .location-old-courthouse-stage,
.grid-cap  .location-old-courthouse-stage,
.grid-spot .location-old-courthouse-stage {
  background-color: #b0cac6;
}

.map-area  .location-old-courthouse-stage::after {
  border-top-color: #b0cac6;
}

.map-area .location-van-dyke-stage,
.grid-cap .location-van-dyke-stage,
.grid-spot .location-van-dyke-stage {
  background-color: #ddb9b6;
}

.map-area  .location-van-dyke-stage::after {
  border-top-color: #ddb9b6;
}

.map-area  .location-center-city-jams,
.grid-cap  .location-center-city-jams,
.grid-spot .location-center-city-jams {
  background-color: #c8bccd;
}

.map-area  .location-center-city-jams::after {
  border-top-color: #c8bccd;
}

.map-area  .location-cultural-center-studio-305,
.grid-cap  .location-cultural-center-studio-305,
.grid-spot .location-cultural-center-studio-305 {
  background-color: #aec0d0;
}

.map-area  .location-cultural-center-studio-305::after {
  border-top-color: #aec0d0;
}

.map-area  .location-lebauer-park,
.grid-cap  .location-lebauer-park,
.grid-spot .location-lebauer-park {
  background-color: #d0ccae;
}

.map-area  .location-lebauer-park::after {
  border-top-color: #d0ccae;
}

main.directory {
  margin-top: 30px;
}

.gaz-directory {
  margin-bottom: 30px;
}

.gaz-directory .directory-bg {
  background-color: #275877;
  border-radius: 5px;
}

.gaz-directory.drinks .directory-bg {
  background-color: #14699d;
}

.gaz-directory .directory-flow h2 {
  text-align: center;
}

.gaz-directory .directory-flow {
  display: grid;
  padding: 30px 20px 20px 20px;
  row-gap: 20px;
}

.gaz-directory .food-key-below {
  display: flex;
  flex-direction: column;
  align-content: center;
  flex-wrap: wrap;
  font-size: 1.2rem;
  font-weight: 500;
  padding-bottom: 50px;
}

.gaz-directory .contributor {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.gaz-directory .contributor img {
  border-radius: 5px;
}

.gaz-directory .contributor .details .name {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 15px;
  max-width: 200px;
}

.gaz-directory .contributor .name a {
  color: #fff;
  text-decoration: none;
}

/* fix me - now in dialog element */
.gaz-directory .contributor .gaz-modal-inner {
  display: flex;
  width: 500px;
  flex-direction: column;
  background-color: #0c3554;
  margin: 80px 0 50px 0;
}

@media (width >= 900px) {
  .directory-flow {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (width < 900px) {
  .directory-flow {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (width < 620px) {
  .directory-flow {
    grid-template-columns: repeat(1, 1fr);
  }
}

main.unit {
  /* position: relative; */
  /* background-color: #ffffff; */
  padding: 20px;
}

main.unit .directory-unit {
  color: #fff;
  background-color: #0c3554;
  max-width: 550px;
  padding: 30px;
  border-radius: 5px;
  margin-left: auto;
  margin-right: auto;
}

.directory-unit {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.directory-unit .splitter {
  display: flex;
  flex-direction: row;
  gap: 25px;
}

.directory-unit .splitter img {
  display: none;
}

.directory-unit .splitter h1.name {
  flex: 1;
  font-size: 2rem;
  margin-bottom: 15px;
  text-align: center;
}

.directory-unit .onsite-location {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #34cbd9;
}

.directory-unit .onsite-location .fa-solid {
  font-size: 1.0rem;
  color: #34cbd9;
  margin-left: 5px;
}

.directory-unit .details {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  font-size: 1.0rem;
  margin-top: 5px;
}

.directory-unit .details .description {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 0;
}

.directory-unit .details a {
  color: #fff;
}

.directory-unit .details h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 10px;
}

.directory-unit .details blockquote {
  margin-top: 10px;
}

.directory-unit .details .link {
  text-align: center;
}

.directory-unit .details .label {
  font-weight: 600;
  display: none;
}

@media (width < 600px) {
  .gaz-directory .contributor .gaz-modal-inner {
    width: inherit;
    margin: 80px 0 0 0;
    border-radius: 20px 20px 0 0;
  }
  .directory-unit .splitter {
    flex-direction: column-reverse;
    gap: 15px;
  }
  .directory-unit .details {
    margin-top: 15px;
    grid-template-columns: 1fr;
  }
}

main.accessible-view {
  color: #000;
  background-color: #fff;
  border-radius: 5px;
  padding-top: 10px;
}

.accessible-view .item-details .item-titles {
  margin: 0;
}

.accessible-view .item-details .item-titles {
  margin: 0;
}

.accessible-view .accessible-group {
  margin: 0;
  padding: 0px 10px 20px 10px;
}

.accessible-view {
  display: flex;
  flex-direction: row;
}

.accessible-view h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 10px 20px;
  text-align: center;
}

.accessible-view h2 {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 5px 0;
}

.accessible-view h3 {
  font-size: 1.1rem;
  margin: 5px 0;
}

.accessible-view .day-title {
  padding: 5px;
}

.ncff .accessible-view .item-cell {
  padding: 10px;
  margin: 10px 10px;
  border: 1px solid #999;
  border-radius: 5px;
}

.ncff .accessible-view .item-details {
  padding: 0;
}

.ncff .accessible-view .item-details > div {
  margin: 0;
}

.ncff .accessible-view .item-details .listings > div {
  margin: 5px 0px;
}

.ncff .accessible-view .item-details .item-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 5px 0;
}

.ncff .accessible-view .item-details .item-subtitle,
.ncff .accessible-view .item-details .item-genre {
  font-size: 1rem;
  font-weight: 500;
  margin: 5px 0;
}

.ncff .accessible-view  .item-details .item-hometown {
  font-size: 1.0rem;
  font-weight: 400;
  margin: 5px 0;
}

.ncff .accessible-view .item-details .start-time,
.ncff .accessible-view .item-details .start-date {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.accessible-view .by-place .item-details .start-date,
.accessible-view .by-time .item-details .start-date {
  display: none;
}

.accessible-view .fave-toggle {
  font-size: 1.2rem;
  margin: 5px;
}
