@layer defaults dialog search;
@font-face {
  font-family: 'Oxanium';
  src: url('../assets/fonts/Oxanium[wght].woff2') format('woff2-variations');
  font-weight: 200 800;
  font-display: swap;
}
:root {
  --theme-main-color: #6060b1;
  --hover: rgba(111, 111, 185, 0.5);
  --black: rgba(0, 0, 0, 0.7);
  --grey: #767676;
  --grey-light: #b7b7b7;
  --disabled: #cec9c9;
  --white: rgba(255, 255, 255, 0.9);
  --red: rgba(194, 23, 23, 0.7);
  --utrecht-red: #cc0000;
  --red-light: rgba(194, 23, 23, 0.35);
  --orange-dark: #965718;
  --orange: rgba(206, 119, 34, 0.7);
  --green: rgba(33, 108, 14, 0.7);
  --green-light: rgba(33, 108, 14, 0.35);
  --yellow: rgba(243, 235, 151, 0.98);
  --body-font: 'Oxanium', sans-serif;
  --primary-color: var(--theme-main-color);
}
:disabled {
  background-color: var(--disabled);
}
html {
  font-size: 85%;
  height: 100%;
}
html {
  scrollbar-gutter: stable;
}
html:has(dialog[open]) {
  overflow: hidden;
}
/* Reset browser defaults */
dialog {
  max-width: unset;
  max-height: unset;
}
body {
  box-sizing: border-box;
  margin: 0;
  background-color: var(--white);
  padding: 0;
  height: 100%;
  font-family: var(--body-font);
  scrollbar-gutter: stable;
}
h1 {
  margin: 0;
  font-size: 2rem;
}
h2 {
  margin-top: 8px;
  margin-bottom: 5px;
}
* {
  font-family: var(--body-font);
  color: var(--black);
  box-sizing: border-box;
}
.page {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
}
.page main {
  display: flex;
  justify-content: center;
}
.page-header,
.page-footer {
  flex-grow: 0;
  flex-shrink: 0;
}
.page-body {
  margin: 20px;
  min-width: 44rem;
  max-width: 44rem;
}
.page-header {
  width: 100%;
  padding-left: 8px;
  padding-right: 8px;
  background-image: url('/images/banner2.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@supports (background-image: url('/images/banner2.avif')) {
  .page-header {
    background-image: url('/images/banner2.avif');
  }
}
@supports (background-image: url('/images/banner2.webp')) {
  .page-header {
    background-image: url('/images/banner2.webp');
  }
}
.page-header .button.search-button {
  width: 48px;
  height: 48px;
}
.page-footer {
  width: 100%;
  height: 40px;
  background-color: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}
.page-footer span {
  color: var(--white);
}
.page-footer a,
.page-footer .a {
  color: var(--white);
  margin-left: 10px;
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
}
.page-footer a.blue,
.page-footer .a.blue {
  color: var(--theme-main-color);
}
.page-footer a:visited {
  color: var(--white);
}
.a-blue {
  color: var(--theme-main-color);
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
}
p {
  font-family: var(--body-font);
  font-size: 1rem;
}
a {
  font-weight: 500;
  color: var(--theme-main-color);
}
a:visited {
  color: var(--theme-main-color);
}
.listing {
  padding: 0.5rem;
  border-radius: 0.5rem;
  display: grid;
  grid-template-areas: "icon listing-head" "icon tags" "icon artist" "empty lineup";
  grid-template-columns: 3rem auto;
  grid-template-rows: auto auto auto;
}
.listing.recommended {
  background-color: var(--yellow);
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  padding-top: 0.7rem;
}
.listing .icon {
  grid-area: icon;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.listing .icon .favicon {
  width: 2.4rem;
  height: 2.4rem;
}
.listing .listing-head {
  grid-area: listing-head;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.2rem;
}
.listing .venue {
  font-weight: 700;
}
.listing .artist {
  grid-area: artist;
  font-size: 1.4rem;
  display: flex;
  gap: 0.3rem;
  align-items: center;
}
.listing .artist .media-icons {
  display: flex;
  gap: 0.3rem;
}
.listing .artist .media-icons img {
  width: 1rem;
  height: 1rem;
}
.listing .tags {
  grid-area: tags;
  display: flex;
  justify-content: flex-start;
}
.listing .listing-lineup {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  grid-area: lineup;
  margin-top: 4px;
}
.listing .listing-lineup .performer-name {
  color: #686868;
}
.listing .listing-lineup span:not(:last-child)::after {
  content: " - ";
}
.tip {
  background-color: var(--orange);
  color: white;
  font-weight: 700;
  padding: 4px 12px;
}
.free-entrance {
  background-color: var(--green);
  color: white;
  padding: 4px 12px;
}
.listing-footer {
  display: flex;
  justify-content: flex-end;
  font-size: 1.4rem;
  padding-bottom: 10px;
  border-bottom: solid 1px var(--grey);
}
.exhibitions,
.new-listings,
.regional {
  padding-bottom: 10px;
  border-bottom: solid 1px var(--grey);
}
.date {
  display: inline-block;
  background-color: black;
  color: white;
  padding: 4px 12px;
}
.event-header a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: solid 1px var(--grey);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.tagline {
  font-size: 1.4rem;
}
.event-footer {
  border-top: solid 1px var(--grey);
  padding-top: 1rem;
  margin-top: 1rem;
}
.event-footer .date-created {
  font-size: 0.8rem;
  color: var(--grey);
}
.icon-button {
  cursor: pointer;
  color: grey;
  width: 16px;
  height: 16px;
}
.icon-button:hover {
  color: var(--theme-main-color);
}
br {
  margin-bottom: 0.5rem;
}
.button {
  text-transform: uppercase;
  border: none;
  color: var(--white);
  font-weight: 700;
  background-color: var(--theme-main-color);
  border-radius: 4px;
  padding: 8px 12px;
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
  fill: var(--white);
}
.button i,
.button span {
  color: inherit;
}
.button:hover {
  background-color: var(--hover);
}
.button:disabled {
  background-color: var(--grey-light);
}
.button.button-secondary {
  background-color: var(--white);
  color: var(--theme-main-color);
}
.button.button-secondary:hover {
  background-color: var(--hover);
}
.button.search-button {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  border: solid 2px var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}
a.button {
  color: white;
  text-decoration: none;
}
.flex-horizontal {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.flex-vertical {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.flex-horizontal-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.venue-card {
  width: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: solid 1px rgba(128, 128, 128, 0.75);
  border-radius: 4px;
}
.venue-card-horizontal {
  width: 400px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: solid 1px rgba(128, 128, 128, 0.75);
  border-radius: 4px;
}
.media-link {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}
.media-link a {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@layer admin {
  input,
  textarea,
  select {
    border-radius: 4px;
    border: solid 1px grey;
    padding: 4px 8px;
    font-size: 1rem;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  }
  input:focus,
  textarea:focus,
  select:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--theme-main-color);
  }
  input[type=date],
  input[type=time] {
    width: 130px;
  }
  textarea {
    resize: none;
  }
  label {
    text-transform: uppercase;
    margin-top: 4px;
    margin-bottom: 4px;
    font-size: 0.8rem;
  }
}
.event-content {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.event-content .event-description {
  width: 60%;
}
.event-content .event-lineup {
  width: 40%;
}
.event-photo {
  border-radius: 8px;
}
.venue-logo {
  max-width: 600px;
  max-height: 200px;
  margin-bottom: 20px;
}
.venue-details {
  display: grid;
  grid-template-columns: 300px auto;
  grid-gap: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.venue-photos {
  display: flex;
  gap: 10px;
}
.venue-photos div {
  background-size: cover;
  background-position: center;
  width: 300px;
  height: 300px;
  border-radius: 8px;
}
.body-text {
  font-family: var(--body-font);
  font-size: 1rem;
}
.header-content {
  margin-left: auto;
  margin-right: auto;
  min-width: 44rem;
  max-width: 44rem;
  display: flex;
  justify-content: space-between;
}
.banner-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 44rem;
  align-items: center;
  display: grid;
  grid-template-columns: 6rem auto 4rem;
  grid-gap: 1rem;
}
.banner-content h1 {
  margin: 0;
  color: white;
  font-size: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.banner-content .logo {
  width: 6rem;
  height: 6rem;
}
.contact-form {
  width: 300px;
}
.contact-form main {
  display: flex;
  flex-direction: column;
}
.contact-form footer {
  display: flex;
  margin-top: 10px;
  justify-content: flex-end;
}
.tag {
  color: var(--white);
  border-radius: 4px;
  background-color: var(--grey);
  padding: 3px 7px;
  text-transform: uppercase;
  font-size: 0.7rem;
  display: block;
}
.icon-button svg {
  width: 20px;
  height: 20px;
  cursor: pointer;
  fill: var(--theme-main-color);
}
/* primevue overrides */
.p-inputtext {
  font-family: var(--body-font);
  border-radius: 4px;
  border: solid 1px grey;
  padding: 4px 8px;
  font-size: 1rem;
}
@layer search {
  #search-dialog {
    margin-top: 20px;
    background-color: white;
    padding: 20px;
    padding-right: 40px;
    padding-left: 40px;
    width: 600px;
    height: 80vh;
    border-radius: 8px;
    border: none;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    overflow: hidden;
  }
  #search-dialog .search-dialog-content {
    display: grid;
    grid-template-rows: 60px 50px auto;
    height: 100%;
  }
  #search-dialog .search-dialog-content header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
  }
  #search-dialog .search-dialog-content .search-query {
    width: 100%;
    font-size: 1.4rem;
    margin-bottom: 16px;
    padding: 8px;
  }
  #search-dialog .search-dialog-content #search-results {
    overflow: auto;
  }
}
@layer dialog {
  #newsletter-dialog,
  #sign-in-dialog {
    margin-top: 20px;
    background-color: white;
    padding: 20px;
    padding-right: 40px;
    padding-left: 40px;
    width: 400px;
    height: 300px;
    border-radius: 8px;
    border: none;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }
  #newsletter-dialog header,
  #sign-in-dialog header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
  }
  #newsletter-dialog main,
  #sign-in-dialog main {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
  }
  #newsletter-dialog footer,
  #sign-in-dialog footer {
    display: flex;
    justify-content: flex-end;
  }
}
.sold-out {
  font-weight: 700;
  background-color: var(--red);
  color: white;
  padding: 4px 12px;
}
.venue-listing {
  display: grid;
  grid-template-areas: "photo header" "photo lineup";
  grid-template-columns: 80px auto;
  grid-gap: 8px;
  margin-bottom: 10px;
}
.venue-listing picture {
  grid-area: photo;
}
.venue-listing header {
  grid-area: header;
  display: flex;
  gap: 8px;
  align-items: center;
}
.venue-listing header a {
  font-size: 1.2rem;
}
.venue-listing .listing-lineup {
  grid-area: lineup;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 4px;
}
.venue-listing .listing-lineup .performer-name {
  color: var(--grey);
}
.venue-listing .listing-lineup span:not(:last-child)::after {
  content: " - ";
}
.artist-thumbnail {
  width: 80px;
  height: 80px;
  object-position: 50% 50%;
  object-fit: cover;
  border-radius: 4px;
}
.photo-credits {
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: white;
  background-color: var(--grey);
  padding: 6px;
}
.jl-banner {
  padding: 2px 4px 2px 2px;
  display: flex;
  justify-content: flex-end;
  background-color: black;
  color: white;
}
.jl-banner a {
  font-weight: bold;
  color: white;
}
.backdrop {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  z-index: 10;
}
.hidden {
  display: none;
}
.dialog {
  z-index: 100;
  position: fixed;
  top: 20px;
}
@media (max-width: 430px) {
  .page-body {
    max-width: unset;
    min-width: unset;
    margin: 10px;
    width: 90vw;
  }
  .banner {
    height: 120px;
  }
  .banner .logo {
    width: 100px;
    height: 100px;
  }
  .banner .banner-content h1 {
    font-size: 1.4rem;
    text-align: center;
  }
  .header-content {
    padding-top: 10px;
    min-width: 95vw;
    max-width: 95vw;
  }
  .body {
    margin: 10px;
  }
  h2 {
    text-align: center;
  }
  .event-content {
    display: flex;
    flex-direction: column;
  }
  .event-content .event-description {
    width: 100%;
  }
  .event-content .event-lineup {
    width: 100%;
  }
  .venue-logo {
    max-width: 380px;
    max-height: 150px;
    margin-bottom: 20px;
  }
  .venue-details,
  .venue-photos {
    display: flex;
    flex-direction: column;
  }
  .venue-listing header {
    align-items: flex-start;
    flex-direction: column;
  }
  .venue-listing .listing-lineup {
    margin-top: 0;
  }
  .listing .date-panel {
    display: flex;
    flex-direction: column;
  }
  @layer search {
    #search-dialog {
      margin-top: 0;
      padding: 10px 20px;
      width: 100vw;
      height: 100vh;
      border-radius: 0;
      box-shadow: unset;
    }
    #search-dialog .search-query {
      margin-bottom: 6px;
    }
    #search-dialog #search-results .listing {
      padding-left: 0;
      padding-right: 0;
    }
    #search-dialog #search-results .listing-head {
      justify-content: flex-start;
      flex-wrap: wrap;
    }
  }
}
.j030-page-header {
  background-color: black;
  padding: 8px;
  display: grid;
  grid-template-columns: 54px 500px 50px;
  gap: 8px;
  color: white;
}
.j030-page-header .button.search-button {
  width: 50px;
  height: 50px;
}
.j030-title,
.j030-sub-title {
  color: white;
}
.j030-page-footer {
  background-color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 8px;
}
.j030-page-footer span,
.j030-page-footer a {
  color: white;
}
.woj,
.ads {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--grey);
}
.ads .main {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
}
.ads .main .ad {
  width: 100px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
a.button,
.button {
  background-color: var(--utrecht-red);
}
a.button:hover,
.button:hover {
  background-color: var(--utrecht-red);
}
.event-footer a {
  color: var(--utrecht-red);
}
.search-button {
  background-color: var(--utrecht-red);
}
.artist a {
  color: var(--utrecht-red);
}
input:focus {
  box-shadow: 0 0 0 2px var(--utrecht-red);
}
@media (max-width: 430px) {
  .j030-page-header {
    grid-template-columns: 54px auto 50px;
  }
}
