@charset "UTF-8";
:root {
  --text-color: rgb(219, 219, 219);
  --text-color-brighter: rgb(255, 255, 255);
  --sub-header-color: var(--text-color-brighter);
  --link-in-subheader: var(--sub-header-color);
  --text-shadow-color: rgb(0, 0, 0);
  --alt-hover: #00d1c4;
  --low-prio-subtitle: gray;
  --main-background-color: #000000;
  --overlay-dark-top: rgba(0, 0, 0, 0.7);
  --overlay-dark-bottom: var(--overlay-dark-top);
  --header-scrolled-text: #333333;
  --header-scrolled-bg: rgba(255, 255, 255, 0.95);
  --header-border: rgba(80, 80, 80, 0.3);
  --header-shadow: rgba(0, 0, 0, 0.2);
  --nav-el-color: #ffffff;
  --nav-active-highlight: #fd9e07;
  --nav-open-border-color: rgba(255, 255, 255, 0.2);
  --header-gradient-start: rgba(0, 0, 0, 0.90);
  --header-gradient-end: rgba(0, 0, 0, 0);
  --footer-color: #000000;
  --footer-text-color: #ffffff;
  --footer-icon-hover: #1733c1;
  --footer-hover-link: var(--nav-active-highlight);
  --link-transparent: rgba(255, 255, 255, 0);
  --link-semi: rgba(255, 255, 255, 0.8);
  --aspect-border-full-color: #ffffff;
  --aspect-bg-color: #8080807a;
  --aspect-invisible-border-color: rgba(255, 255, 255, 0);
  --text-shadow-psychedelic: rgba(82, 89, 128, 0.89);
  --blend-psychedelic: #81937f;
  --blend-gray: #b76f6f;
  --social-facebook: #1733c1;
  --social-rarible: #fcdb00;
  --social-twitter: #55acee;
  --social-youtube: #cd201f;
  --social-instagram: #f167f5;
  --social-linkedin: #0676a8;
  --social-pinterest: #bd081c;
  --social-rss: #f26522;
  --social-google-plus: #55acee;
}

/* created with https://gwfh.mranftl.com/fonts */
/* orbitron-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/orbitron-v29-latin-regular.woff2") format("woff2");
}
/* orbitron-500 - latin */
@font-face {
  font-display: swap;
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 500;
  src: url("/fonts/orbitron-v29-latin-500.woff2") format("woff2");
}
/* orbitron-600 - latin */
@font-face {
  font-display: swap;
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 600;
  src: url("/fonts/orbitron-v29-latin-600.woff2") format("woff2");
}
/* orbitron-700 - latin */
@font-face {
  font-display: swap;
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/orbitron-v29-latin-700.woff2") format("woff2");
}
/* orbitron-800 - latin */
@font-face {
  font-display: swap;
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 800;
  src: url("/fonts/orbitron-v29-latin-800.woff2") format("woff2");
}
/* orbitron-900 - latin */
@font-face {
  font-display: swap;
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 900;
  src: url("/fonts/orbitron-v29-latin-900.woff2") format("woff2");
}
/* aldrich-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Aldrich";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/aldrich-v21-latin-regular.woff2") format("woff2");
}
html {
  background: var(--main-background-color);
}

html, body {
  margin: 0;
  padding: 0;
  scroll-snap-type: y proximity;
  scroll-behavior: smooth;
  color: var(--text-color);
}
@media not all and (min-width: 768px) {
  html, body {
    scroll-snap-type: y proximity;
  }
}

body {
  font-family: "Aldrich", sans-serif;
  background: linear-gradient(var(--overlay-dark-top), var(--overlay-dark-bottom)), url("/images/bg_liquids.webp");
  background-attachment: fixed;
  background-size: cover;
}
body > section {
  scroll-snap-align: start;
  padding-top: 65px;
  min-height: calc(100vh - 65px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
}
body > section:nth-last-of-type(1) {
  min-height: calc(100vh - 110px);
}
body > section > div {
  max-width: 1140px;
  margin: 0 auto;
  margin: auto;
  position: relative;
}
body > section:has(+ .learn-more) > div {
  padding-bottom: 38px;
}
body > section:last-child {
  min-height: calc(100vh - 110px);
}

a {
  color: var(--alt-hover);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
}

h1 strong {
  font-weight: 900;
}

h2 strong {
  font-weight: 800;
}

h2 date {
  font-style: italic;
}

h1 {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: 3.8em;
  margin: 0;
}

h2 {
  font-family: "Orbitron", sans-serif;
  font-weight: 300;
  font-size: min(3em, 2em + 1vw);
  margin: 0 0 30px 0;
  line-height: 1.2em;
  color: var(--sub-header-color);
  max-width: 95vw;
  overflow: hidden;
}

h3 {
  margin: 20px 0 10px 0;
  font-weight: 300;
  font-size: 2em;
}

h2 a {
  color: var(--link-in-subheader);
}
h2 a:hover {
  text-decoration: none;
}

p, address {
  font-size: 1em;
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.6em;
}

figcaption h1 {
  font-size: 1.3em;
  font-weight: 600;
}
figcaption h2 {
  font-size: 1em;
  margin: 0;
}

/* This is used to override text effect for specific backgrounds */
.hero {
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.hero > video {
  position: fixed;
  overflow: hidden;
  min-height: 100%;
  min-width: 100%;
  top: 0;
  left: 0;
}
.hero p {
  color: var(--text-color-brighter);
}
.hero .inner-hero {
  display: flex;
  align-items: center;
  padding-bottom: 60px;
  width: 100%;
  flex-grow: 1;
  max-width: 750px;
}
.hero .hero-text-container {
  text-align: left;
  /* Ensure the text is never under the "before" element if the section"
     Only enabled for a single page since it can interfere with blending
     modes. */
}
.about-page.hero .hero-text-container {
  z-index: 1000;
}

.hero .hero-text-container h1, .hero .hero-text-container h2, .hero .hero-text-container p, .hero .hero-text-container .button, .hero .hero-text-container ul {
  text-shadow: 2px 2px 2px var(--text-shadow-color), -1px -1px 2px var(--text-shadow-color);
}
.crazy-blend.hero .hero-text-container h1, .crazy-blend.hero .hero-text-container h2, .crazy-blend.hero .hero-text-container p, .crazy-blend.hero .hero-text-container .button, .crazy-blend.hero .hero-text-container ul {
  mix-blend-mode: exclusion;
}

.gray-bg.hero .hero-text-container h1, .gray-bg.hero .hero-text-container h2, .gray-bg.hero .hero-text-container p, .gray-bg.hero .hero-text-container .button, .gray-bg.hero .hero-text-container ul {
  mix-blend-mode: difference;
  color: var(--blend-gray);
}

.psychedelic-bg.hero .hero-text-container h1, .psychedelic-bg.hero .hero-text-container h2, .psychedelic-bg.hero .hero-text-container p, .psychedelic-bg.hero .hero-text-container .button, .psychedelic-bg.hero .hero-text-container ul {
  mix-blend-mode: difference;
  color: var(--blend-psychedelic);
  text-shadow: 1px 1px 1px rgba(82, 89, 128, 0.89);
}

.hero .hero-text-container h2 {
  font-weight: 800;
}
.hero .main-social {
  padding-left: 0;
}
.hero .main-social li {
  list-style-type: none;
  mix-blend-mode: exclusion;
}
.hero .main-social svg {
  vertical-align: middle;
  fill: var(--text-color-brighter);
  width: 24px;
  height: 24px;
}
.hero .main-social a {
  color: var(--text-color);
}
.hero .main-social a:hover {
  text-decoration: none;
}

section:last-of-type.hero > .inner-hero {
  padding-bottom: 0px;
}

.aspect-container {
  position: relative; /* this is needed to get the correct position on the learn-more */
  display: flex;
  align-items: center;
  gap: 0px;
  overflow: hidden;
  padding-top: 0px;
  height: 100vh;
}
.aspect-container .learn-more {
  position: absolute;
  bottom: 0px;
  max-width: 100vw;
}
@media (min-width: 768px) {
  .aspect-container {
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .aspect-container > section:nth-child(odd) {
    padding-left: 10vh;
  }
  .aspect-container > section:nth-child(even) {
    padding-right: 10vh;
  }
}
@media not all and (min-width: 768px) {
  .aspect-container {
    flex-direction: column;
  }
}
.aspect-container > section {
  flex-grow: 1;
  transition: flex-grow 1s;
  background-size: cover;
  background-position: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  row-gap: 5vh;
  flex-direction: column;
  overflow: hidden;
  contain: layout;
}
@media (min-width: 768px) {
  .aspect-container > section {
    height: calc(100vh - 300px);
    min-height: 550px;
    padding-top: 200px;
    padding-bottom: 100px;
    flex-basis: 20%;
  }
}
@media not all and (min-width: 768px) {
  .aspect-container > section {
    padding-top: 60px;
    padding-bottom: 10px;
    flex-basis: 5%;
    width: 100vw;
  }
}
.aspect-container > section h2 {
  font-weight: 800;
  letter-spacing: 0.2ex;
  mix-blend-mode: exclusion;
}
.aspect-container > section h3:after {
  display: block;
  content: "\a";
}
.aspect-container > section > section {
  max-height: 0em;
  background: none;
  flex-grow: 0;
  overflow: hidden;
  padding: 0px 0px;
  border: 0px solid var(--aspect-invisible-border-color);
  transition: max-height 2s linear 1s, padding 2s linear 1s, flex-basis 2s linear 1s, overflow 2s linear 1s, border-width 2s linear 1s, border-color 2s linear 1s;
  background-color: var(--aspect-bg-color);
}
.aspect-container > section > section > p, .aspect-container > section > section h3 {
  margin: 0px;
}
.aspect-container > section > section > h3 {
  font-size: 1.2em;
  font-weight: 700;
}
.aspect-container > section > section > p {
  font-weight: 600;
}
.aspect-container > section > section > .aspect-image {
  position: fixed;
  overflow: hidden;
  height: 100vh;
  top: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  background-size: cover;
  background-position: center center;
  transition: opacity 0.25s;
}
@media (min-width: 768px) {
  .aspect-container > section > section > .aspect-image {
    width: 70vw;
  }
}
@media not all and (min-width: 768px) {
  .aspect-container > section > section > .aspect-image {
    left: 0;
    width: 100vw;
  }
}
@media (min-width: 768px) {
  .aspect-container > section:nth-child(odd) > section > .aspect-image {
    left: 0;
  }
  .aspect-container > section:nth-child(even) > section > .aspect-image {
    right: 0vw;
  }
}
.aspect-container > section:hover, .aspect-container > section:focus, .aspect-container > section:active {
  flex-grow: 5;
}
.aspect-container > section:hover > section, .aspect-container > section:focus > section, .aspect-container > section:active > section {
  flex-basis: fit-content;
  padding: 16px 16px;
  max-height: 8em;
  border: 2px solid var(--aspect-border-full-color);
}
.aspect-container > section:hover > section:hover > .aspect-image, .aspect-container > section:hover > section:focus > .aspect-image, .aspect-container > section:hover > section:active > .aspect-image, .aspect-container > section:focus > section:hover > .aspect-image, .aspect-container > section:focus > section:focus > .aspect-image, .aspect-container > section:focus > section:active > .aspect-image, .aspect-container > section:active > section:hover > .aspect-image, .aspect-container > section:active > section:focus > .aspect-image, .aspect-container > section:active > section:active > .aspect-image {
  opacity: 100%;
  transition: opacity 1s;
}

.image {
  text-align: center;
}

a.poptrox {
  display: contents;
}

.info > div .images figure .image-container {
  display: block;
  position: relative;
  margin: 0px;
  outline: 0px;
}
.info > div .images figure .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.info > div .images figure .image-container::after {
  content: "🔍"; /* this is a  magnifying glass */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 57px;
  color: white;
  opacity: 76%;
  filter: saturate(10%);
  pointer-events: none;
}
.info > div .images figure .image-container[data-poptrox=youtube]::after {
  content: "▶️"; /* this is a play emoji */
  opacity: 64%;
  font-size: 85px;
}
.info > div .images figure:hover .image-container::after {
  transition: opacity 0.5s, filter 0.5s;
  opacity: 90%;
  filter: saturate(90%);
}

@media (min-width: 768px) {
  .info > div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: start;
    flex-direction: row;
    width: 100%;
    margin-bottom: 5px;
    column-gap: 40px;
  }
  .info > div.shows {
    flex-direction: column;
  }
  .info > div:first-of-type {
    flex-grow: 1;
  }
  .info > div .text, .info > div .images {
    -webkit-flex: 1;
    flex: 1;
    padding: 0;
  }
  .info > div .images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    align-self: stretch;
  }
  .info > div .images:has(figure:last-child:nth-child(odd)) > figure:first-child .image-container {
    grid-column: span 2;
  }
  .info > div .images figure {
    display: contents;
  }
  .info > div .images figure figcaption {
    pointer-events: none;
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 36px;
    left: 0px;
    margin: 0;
    color: white;
    width: calc(50% - 35px);
    opacity: 0;
    transition: opacity 1s;
    background: black;
    border: 2px solid white;
    padding: 5px;
    z-index: 1;
  }
  .info > div .images figure figcaption::before {
    content: "";
    flex-grow: 1;
  }
  .info > div .images figure img {
    position: absolute;
    outline: 0px solid white;
    transition: outline-width 0.15s;
  }
  .info > div .images figure:hover figcaption, .info > div .images figure:focus figcaption, .info > div .images figure:active figcaption, .info > div .images figure:focus-within figcaption {
    pointer-events: auto;
    opacity: 1;
  }
  .info > div .images figure:hover img, .info > div .images figure:focus img, .info > div .images figure:active img, .info > div .images figure:focus-within img {
    outline-width: 2px;
  }
  .info > div .images figure:hover figcaption {
    z-index: 10;
  }
  .info:nth-of-type(odd) > div {
    flex-direction: row-reverse;
  }
  .info:nth-of-type(odd) > div .images figure figcaption {
    right: 0px;
    left: unset;
  }
}
@media not all and (min-width: 768px) {
  .info > div .text {
    padding: 0 5px;
  }
}
.info.single-video > .yt-embed {
  flex-direction: column;
  display: flex;
  align-items: stretch;
  flex-grow: 1;
}
.info.single-video > .yt-embed iframe {
  flex-grow: 1;
}
.info.single-video > .yt-embed div {
  flex-basis: 0;
  flex-grow: 0;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
}

.dark-logo {
  display: none;
}

section.transparent {
  mix-blend-mode: screen;
}

header {
  padding: 15px 0;
  position: fixed;
  width: 100%;
  z-index: 9999;
  line-height: 0;
}
header .nav-bar {
  max-width: 1140px;
  margin: 0 auto;
  line-height: 0;
}
header::before {
  content: "";
  background: linear-gradient(to bottom, var(--header-gradient-start) 0, var(--header-gradient-end) 100%);
  height: 300px;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  transition: opacity 1s;
  pointer-events: none;
}
header.header-background {
  background-color: var(--header-scrolled-bg);
  color: var(--header-scrolled-text);
  box-shadow: 0px 0px 10px var(--header-shadow);
  transition: background-color 0.2s ease;
  text-shadow: none;
}
header.header-background a {
  color: var(--header-scrolled-text);
}
@media (min-width: 620px) {
  header.header-background a:hover {
    border-bottom-color: var(--header-border);
    border-bottom-width: 5px;
  }
}
header.header-background .dark-logo {
  display: inline;
}
header.header-background .light-logo {
  display: none;
}
header.header-background::before {
  opacity: 0;
}
header a {
  color: var(--nav-el-color);
  text-decoration: none;
  z-index: 1;
  position: relative;
  display: block;
}
@media (min-width: 620px) {
  header a {
    height: 100%;
  }
}
header a span {
  display: block;
  height: 100%;
}
header a:hover {
  text-decoration: none;
}
header .company-name {
  font-size: 1.7em;
  display: inline-block;
}
header .company-name img {
  height: 30px;
  width: auto;
}

.content {
  background: var(--main-background-color);
  height: fit-content;
  min-height: 100vw;
  padding-bottom: 25vw;
}

.info h2 {
  text-transform: uppercase;
}
.info img {
  max-height: 650px;
}
.info div .text-item:nth-child(odd) {
  text-align: right;
}
.info div .text-item:nth-child(even) {
  text-align: left;
}
.info div .text-item.news blockquote {
  font-style: italic;
  font-size: 1.5em;
}
.info div .text-item.news a {
  padding: 18px 25px;
  margin: 0;
}

.subtext {
  margin-top: 10px;
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  font-size: 1.2em;
}

blockquote {
  padding: 18px 25px;
  margin: 0;
  quotes: "“" "”" "‘" "’";
  font-style: italic;
}
blockquote cite {
  display: block;
  font-weight: bold;
  margin: 10px 0 0 0;
}
blockquote p {
  display: inline;
}

blockquote:before {
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
  content: open-quote;
}

blockquote:after {
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
  content: close-quote;
}

.square-image {
  width: 200px;
  height: 200px;
  border-radius: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 auto;
}

.learn-more {
  font-family: "Orbitron", sans-serif;
  text-align: center;
  font-size: 1.4em;
  font-weight: 600;
  width: 100%;
  height: 38px;
  justify-content: center;
  margin-bottom: 10px;
  position: relative;
  bottom: 38px;
  /* Allow the first section to have a lean-more link preceding it,
     which will not be shown. We know it is the first because
     it will not be preceded by any section */
  display: none;
}
section ~ .learn-more {
  display: block;
}
.learn-more a {
  text-decoration: none;
  color: var(--text-color);
  opacity: 1;
}
.learn-more a:hover {
  opacity: 1;
  color: var(--nav-active-highlight);
}
.learn-more .arrow {
  font-size: 0.9em;
}
.learn-more .arrow::before {
  margin-left: 3px;
  content: "▼";
}

.button {
  margin: 25px 0 0 0;
}
.button a {
  font-family: "Orbitron", sans-serif;
  background: var(--header-gradient-end);
  border: 2px solid var(--text-color-brighter);
  color: var(--text-color-brighter);
  padding: 5px;
}
.button a:hover {
  border: 2px solid var(--alt-hover);
  color: var(--alt-hover);
  text-shadow: none;
}

.nav-open nav {
  border-bottom: 1px dotted var(--nav-open-border-color);
  padding: 10px 0;
}
.nav-open nav a {
  display: block;
  padding: 30px 0;
}
@media (min-width: 620px) {
  .nav-open nav {
    border: 0;
    padding: 0 20px;
  }
  .nav-open nav a {
    display: inline;
  }
}

nav {
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  font-size: 0.8em;
  font-weight: 600;
  width: 100%;
  position: relative;
  top: -7px;
  text-shadow: none;
}
@media (min-width: 620px) {
  nav {
    padding: 0 20px;
    display: inline;
  }
}
nav a {
  margin: 0 3px;
  padding: 14px 10px;
  border: 0;
  display: none;
}
@media (min-width: 620px) {
  nav a {
    display: inline;
    border-bottom: 1px solid var(--link-transparent);
    color: var(--link-semi);
  }
}
nav a.nav-toggle {
  display: inline;
  position: absolute;
  right: 10px;
  top: -7px;
  font-size: 1.9em;
  border: 0;
  text-shadow: 0;
  padding: 0 !important;
}
@media (min-width: 620px) {
  nav a.nav-toggle {
    display: none;
  }
}
nav a.nav-toggle:hover {
  border: 0;
}
nav a.active {
  border-bottom: 5px solid var(--nav-active-highlight);
}

footer {
  font-family: "Orbitron", sans-serif;
  font-size: 0.7em;
  position: relative;
  background: var(--footer-color);
  color: var(--footer-text-color);
  height: 50px;
}
footer,
footer a {
  color: var(--footer-text-color);
}
footer a {
  text-decoration: none;
  padding: 0 10px;
}
footer a:hover {
  color: var(--footer-hover-link);
}
footer ul {
  padding: 0;
  margin: 0;
}
footer ul.footer-right-links {
  float: left;
}
@media (min-width: 450px) {
  footer ul.footer-right-links {
    float: right;
  }
}
footer ul.footer-left-links {
  float: left;
}
footer ul li {
  list-style: none;
  margin: 15px auto;
  display: inline-block;
}
footer ul li a:hover {
  text-decoration: none;
}
footer ul li a svg {
  fill: var(--footer-text-color);
  transition: fill 0.2s ease;
  vertical-align: middle;
  width: 18px;
  height: 18px;
}
footer ul li a:hover svg {
  fill: var(--footer-icon-hover);
}

a.facebook-icon:hover {
  color: var(--social-facebook);
}
a.facebook-icon:hover svg {
  fill: var(--social-facebook);
}
a.rarible-icon:hover {
  color: var(--social-rarible);
}
a.rarible-icon:hover svg {
  fill: var(--social-rarible);
}
a.twitter-icon:hover {
  color: var(--social-twitter);
}
a.twitter-icon:hover svg {
  fill: var(--social-twitter);
}
a.google-plus-icon:hover {
  color: var(--social-google-plus);
}
a.google-plus-icon:hover svg {
  fill: var(--social-google-plus);
}
a.youtube-icon:hover {
  color: var(--social-youtube);
}
a.youtube-icon:hover svg {
  fill: var(--social-youtube);
}
a.instagram-icon:hover {
  color: var(--social-instagram);
}
a.instagram-icon:hover svg {
  fill: var(--social-instagram);
}
a.linkedin-icon:hover {
  color: var(--social-linkedin);
}
a.linkedin-icon:hover svg {
  fill: var(--social-linkedin);
}
a.pinterest-icon:hover {
  color: var(--social-pinterest);
}
a.pinterest-icon:hover svg {
  fill: var(--social-pinterest);
}
a.rss-icon:hover {
  color: var(--social-rss);
}
a.rss-icon:hover svg {
  fill: var(--social-rss);
}

.copyright {
  margin: 15px auto;
  float: left;
}
.copyright a {
  color: var(--footer-text-color);
  padding: 0;
}
@media (min-width: 768px) {
  .copyright {
    text-align: center;
    float: none;
    padding: 13px 0;
    margin: 0;
  }
}

.gallery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: center;
  row-gap: 4px;
}
.gallery figure {
  display: contents;
}
.gallery figure > a {
  display: contents;
}
.gallery figure figcaption {
  color: var(--text-color);
  text-align: center;
  display: none;
}
.gallery figure img {
  aspect-ratio: 1;
  width: calc(25% - 4px);
  object-fit: cover;
  transition: outline-width 0.15s;
  outline: 0px solid var(--text-color-brighter);
}
.gallery figure:hover img {
  outline-width: 2px;
}

.poptrox-overlay .caption {
  font-size: 0.7em;
  line-height: unset !important;
}
.poptrox-overlay .caption h2, .poptrox-overlay .caption h3, .poptrox-overlay .caption p {
  display: none;
}

.shows-in-year {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.info > div.shows {
  flex-direction: column;
}

.year {
  scroll-snap-align: start;
}
.year:not(:last-child) {
  margin-bottom: 50px;
}

.show {
  flex-grow: 1;
}
.show h3 {
  margin-bottom: 0;
}
.show h4 {
  margin-top: 1px;
}
.show > h4, .show time {
  color: var(--low-prio-subtitle);
}
@media (min-width: 768px) {
  .show {
    width: 45%;
  }
}
.show:nth-child(even) {
  text-align: right;
}
.show:nth-child(even) ul.concerts {
  align-items: flex-end;
}
.show:nth-child(even) ul.concerts li::after {
  content: "◃";
  margin-left: 5px;
}
.show:nth-child(odd) ul.concerts li::before {
  content: "▹";
  margin-right: 5px;
}

ul.concerts {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  padding-right: 0px;
  padding-left: 0px;
}
ul.concerts li {
  margin-top: 1px;
  margin-bottom: 1px;
}

span.daterange > time:not(:last-child)::after {
  content: " - ";
}

span.dates > time:not(:last-child)::after, span.location:not(:last-child)::after {
  content: " | ";
}

ul.videos li {
  padding-left: 0.5ex;
}
ul.videos li::marker {
  content: "🎞️"; /* this is a film strip emoji */
  font-size: 150%;
}

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