:root {
  --light-grey: #EEECE9;
  --dark-grey: #555;
  --almost-black: #000105;
  --small-space: 6px;
}
@media screen and (min-width: 960px) {
  :root {
    --small-space: 10px;
  }
}

@font-face {
  font-family: Haffer;
  src: url("./../../../../assets/fonts/HafferXHTRIAL-Regular.otf") format("opentype");
  font-weight: 400;
}
@-webkit-keyframes pulse {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
@keyframes pulse {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
.is-hidden {
  opacity: 0;
  pointer-events: none;
}

button.hamburger {
  height: 40px;
  width: 40px;
}

div.hamburger {
  height: 40px;
  width: 40px;
}
div.hamburger > .inner {
  top: 50%;
}

.hamburger {
  background-color: transparent;
  border: 0 transparent solid;
  border-radius: 0;
  color: inherit;
  cursor: pointer;
  display: inline-block;
  font: inherit;
  opacity: 1;
  overflow: visible;
  padding: 4px;
  text-transform: none;
  transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger:hover {
  background-color: transparent;
  opacity: 1;
}
.hamburger:hover span.bar {
  background-color: #000;
}
.hamburger:hover > .inner:nth-child(1)::before, .hamburger:hover > .inner:nth-child(1)::after, .hamburger:hover > .inner:nth-child(2)::before, .hamburger:hover > .inner:nth-child(2)::after, .hamburger:hover > .inner:nth-child(3)::before, .hamburger:hover > .inner:nth-child(3)::after,
.hamburger:hover span.bar:nth-child(1)::before,
.hamburger:hover span.bar:nth-child(1)::after,
.hamburger:hover span.bar:nth-child(2)::before,
.hamburger:hover span.bar:nth-child(2)::after,
.hamburger:hover span.bar:nth-child(3)::before,
.hamburger:hover span.bar:nth-child(3)::after {
  background-color: #000;
}
.hamburger.active {
  background-color: transparent;
}
.hamburger.active span.bar {
  background-color: #000;
}
.hamburger.active > .inner:nth-child(1)::before, .hamburger.active > .inner:nth-child(1)::after, .hamburger.active > .inner:nth-child(2)::before, .hamburger.active > .inner:nth-child(2)::after, .hamburger.active > .inner:nth-child(3)::before, .hamburger.active > .inner:nth-child(3)::after,
.hamburger.active span.bar:nth-child(1)::before,
.hamburger.active span.bar:nth-child(1)::after,
.hamburger.active span.bar:nth-child(2)::before,
.hamburger.active span.bar:nth-child(2)::after,
.hamburger.active span.bar:nth-child(3)::before,
.hamburger.active span.bar:nth-child(3)::after {
  background-color: #000;
}
.hamburger > .inner {
  margin: 0;
  margin-top: -1px;
  position: relative;
  width: 100%;
}
.hamburger span.bar {
  background-color: #000;
  border-radius: 0;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  width: 100%;
}
.hamburger span.bar:nth-child(1) {
  top: -8px;
}
.hamburger span.bar:nth-child(3) {
  top: 8px;
}
.hamburger:focus {
  outline: 0;
}

.hamburger--criss-cross > .inner::before, .hamburger--criss-cross > .inner::after {
  background-color: #000;
  border-radius: 0;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  width: 100%;
  opacity: 0;
  transform-origin: 0 50%;
  transition: opacity 0.4s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--criss-cross > .inner::before {
  transform: rotate(45deg) translate3d(-4.686291501px, -11.313708499px, 0) scaleX(0);
}
.hamburger--criss-cross > .inner::after {
  transform: rotate(-45deg) translate3d(-4.686291501px, 11.313708499px, 0) scaleX(0);
  transition-delay: 0.1s;
}
.hamburger--criss-cross span.bar {
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.4s cubic-bezier(0.645, 0.045, 0.355, 1), width 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--criss-cross span.bar:nth-child(1) {
  transition-delay: 0.33s;
}
.hamburger--criss-cross span.bar:nth-child(2) {
  transition-delay: 0.36s;
}
.hamburger--criss-cross span.bar:nth-child(3) {
  transition-delay: 0.39s;
}
.hamburger--criss-cross.active > .inner::before, .hamburger--criss-cross.active > .inner::after {
  opacity: 1;
}
.hamburger--criss-cross.active > .inner::before {
  transform: rotate(45deg) translate3d(-4.686291501px, -11.313708499px, 0);
  transition-delay: 0.4s;
}
.hamburger--criss-cross.active > .inner::after {
  transform: rotate(-45deg) translate3d(-4.686291501px, 11.313708499px, 0);
  transition-delay: 0.5s;
}
.hamburger--criss-cross.active span.bar {
  opacity: 0;
  transform: translate3d(-10px, 0, 0);
  width: 50%;
}
.hamburger--criss-cross.active span.bar:nth-child(1) {
  transition-delay: 0s;
}
.hamburger--criss-cross.active span.bar:nth-child(2) {
  transition-delay: 0.2s;
}
.hamburger--criss-cross.active span.bar:nth-child(3) {
  transition-delay: 0.1s;
}

.header {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr 50px;
  padding: var(--small-space) var(--small-space) 0 var(--small-space);
  pointer-events: none;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 10;
}
@media screen and (min-width: 640px) {
  .header {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1024px) {
  .header {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.header a,
.header li,
.header span,
.header button {
  pointer-events: auto;
}
.header.is-opaque {
  background-color: #fff;
}
.header .is-hidden {
  display: none;
}

.header > .context {
  grid-column: span 2;
  min-height: 3.75em;
  z-index: 10;
}
@media screen and (min-width: 1024px) {
  .header > .context {
    grid-column: span 3;
  }
}
.header > .context .logo img {
  height: 2.5em;
  width: auto;
  margin-top: 0.125em;
}
.header > .context .current-track-info {
  overflow: hidden;
}
.header > .context .current-track-info .track-name {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.header > .context .current-track-info .track-name .title:after {
  width: calc(1em - 2px);
  margin-right: 0.25em;
  margin-left: 0.5em;
  margin-bottom: -0.2em;
  height: calc(1em - 2px);
  display: inline-block;
  content: "";
  border: 1px solid;
}
.header > .context .current-track-info .track-time {
  display: inline-block;
  width: 6.5em;
}
.header > .context .current-track-info .track-pause {
  cursor: pointer;
}

.header > .nav {
  display: none;
  flex-direction: column;
  margin-bottom: 1em;
}
@media screen and (min-width: 640px) {
  .header > .nav {
    display: flex;
  }
}
.header > .nav .language-switch {
  position: absolute;
  text-transform: uppercase;
  top: 0.5em;
  right: 0.5em;
}
@media screen and (min-width: 960px) {
  .header > .nav .language-switch {
    top: 0.75em;
    right: 0.75em;
  }
}
.header > .nav ul {
  list-style-type: none;
  padding-left: 0;
}
.header > .nav ul li.is-open > a span {
  animation: pulse 2s linear infinite alternate-reverse;
}
.header > .nav ul li.is-open:before {
  background-color: #000;
  border: 1px solid;
  content: "";
  display: inline-block;
  height: calc(1em - 2px);
  margin-bottom: -0.2em;
  margin-right: 0.25em;
  width: calc(1em - 2px);
}
.header > .nav ul li.is-open .is-active span {
  animation: pulse 2s linear infinite alternate-reverse;
}
.header > .nav ul li ul {
  margin-top: 0.125em;
  margin-left: 1.5em;
}

.header > .mobile-nav {
  background-color: #fff;
  border-bottom: 1px solid;
  display: block;
  left: 0;
  opacity: 0;
  pointer-events: none !important;
  position: fixed;
  top: 3.5em;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 100%;
}
.header > .mobile-nav * {
  pointer-events: none !important;
}
.header > .mobile-nav.is-visible {
  opacity: 1;
  pointer-events: initial !important;
  transform: translateY(0);
}
.header > .mobile-nav.is-visible * {
  pointer-events: initial !important;
}
@media screen and (min-width: 640px) {
  .header > .mobile-nav {
    display: none;
  }
}
.header > .mobile-nav > ul > li {
  margin-bottom: 0.25em;
  border-top: 1px solid;
  padding: 0.125em var(--small-space) 0 var(--small-space);
}
.header > .mobile-nav > ul > li.is-open span {
  animation: pulse 2s linear infinite alternate-reverse;
}
.header > .mobile-nav > ul > li.is-open:before {
  background-color: #000;
  border: 1px solid;
  content: "";
  display: inline-block;
  height: calc(1em - 2px);
  margin-bottom: -0.2em;
  margin-right: 0.25em;
  width: calc(1em - 2px);
}
.header > .mobile-nav ul {
  list-style-type: none;
  padding-left: 0;
}
.header > .mobile-nav ul li ul {
  margin-left: 1.5em;
  margin-top: 0.25em;
}
.header > .mobile-nav ul li ul li {
  cursor: pointer;
  margin-bottom: 0.25em;
}
.header > .mobile-nav ul li ul li.is-active span {
  animation: pulse 2s linear infinite alternate-reverse;
}
.header > .mobile-nav ul li ul li.is-active:before {
  background-color: #000;
}
.header > .mobile-nav ul li ul li:before {
  background-color: #fff;
  border: 1px solid;
  content: "";
  display: inline-block;
  height: calc(1em - 2px);
  margin-bottom: -0.2em;
  margin-right: 0.25em;
  transition: background-color 0.3s ease;
  width: calc(1em - 2px);
}

.header > .section-title {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-column: span 3;
  grid-template-columns: 1fr 1fr 50px;
  position: relative;
  transition: opacity 0.3s ease;
  padding-bottom: 0.25em;
}
@media screen and (min-width: 640px) {
  .header > .section-title {
    grid-template-columns: repeat(3, 1fr);
    grid-column: span 4;
  }
}
@media screen and (min-width: 1024px) {
  .header > .section-title {
    grid-template-columns: repeat(4, 1fr);
    grid-column: span 4;
  }
}
.header > .section-title h2 {
  font-size: 1em;
  font-weight: 400;
  grid-column: span 3;
}
@media screen and (min-width: 1024px) {
  .header > .section-title h2 {
    grid-column: span 4;
  }
}
.header > .section-title a.close {
  position: absolute;
  right: 0;
  bottom: 0.25em;
}
.header > .section-title a.close img {
  margin-right: 2px;
  width: 26px;
  height: 26px;
}

.header > .hamburger {
  position: fixed;
  right: calc(var(--small-space) - 4px);
  top: 0.5em;
}
@media screen and (min-width: 640px) {
  .header > .hamburger {
    display: none;
  }
}

.actions {
  bottom: 0;
  display: none;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 6em var(--small-space) var(--small-space) var(--small-space);
  pointer-events: none;
  position: fixed;
  width: 100%;
  z-index: 10;
}
@media screen and (min-width: 640px) {
  .actions {
    display: grid;
  }
}
@media screen and (min-width: 1024px) {
  .actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.actions.has-opacity {
  background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0.9) 66%, rgba(255, 255, 255, 0) 100%);
}
.actions a,
.actions li,
.actions p {
  pointer-events: auto;
}
.actions .pages {
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  align-items: flex-start;
  justify-content: flex-end;
}
@media screen and (min-width: 1024px) {
  .actions .pages {
    grid-column: span 3;
  }
}
.actions .pages ul {
  list-style-type: none;
  padding-left: 0;
}
.actions .pages ul li.is-open span {
  animation: pulse 2s linear infinite alternate-reverse;
}
.actions .pages ul li.is-open:before {
  background-color: #000;
  border: 1px solid;
  content: "";
  display: inline-block;
  height: calc(1em - 2px);
  margin-bottom: -0.2em;
  margin-right: 0.25em;
  width: calc(1em - 2px);
}
.actions .filters {
  list-style-type: none;
  padding-left: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.actions .filters li {
  cursor: pointer;
  transition: margin-left 0.3s ease;
}
.actions .filters li:before {
  background-color: #000;
  content: "";
  display: inline-block;
  height: 1em;
  left: 0;
  margin-top: 0.1em;
  opacity: 0;
  position: absolute;
  transition: opacity 0.3s ease;
  width: 1em;
}
.actions .filters li.is-active {
  margin-left: 1.5em;
}
.actions .filters li.is-active span {
  animation: pulse 2s linear infinite alternate-reverse;
}
.actions .filters li.is-active:before {
  opacity: 1;
}

* {
  box-sizing: border-box;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Haffer", sans-serif;
  font-size: 16px;
  line-height: 1.25;
}
@media screen and (min-width: 960px) {
  body {
    font-size: 17px;
  }
}
@media screen and (min-width: 1440px) {
  body {
    font-size: 18px;
  }
}
@media screen and (min-width: 1620px) {
  body {
    font-size: 19px;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

input {
  font-family: "Haffer", sans-serif;
}

.is-removed {
  display: none !important;
}

li.switch {
  padding-left: 1.5em;
  position: relative;
  cursor: pointer;
}
li.switch:before {
  background-color: #fff;
  border: 1px solid;
  content: "";
  display: inline-block;
  height: calc(1em - 2px);
  left: 0;
  margin-right: 0.25em;
  margin-top: 0.1em;
  position: absolute;
  transition: opacity 0.3s ease;
  width: calc(1em - 2px);
}
li.switch.is-active span {
  animation: pulse 2s linear infinite alternate-reverse;
}
li.switch.is-active:before {
  background-color: #000;
  border: 1px solid;
  content: "";
  display: inline-block;
  height: calc(1em - 2px);
  margin-bottom: -0.2em;
  margin-right: 0.25em;
  width: calc(1em - 2px);
}

.social {
  display: none;
}
@media screen and (min-width: 1024px) {
  .social {
    display: none;
    position: fixed;
    bottom: 0;
    right: 0;
    padding: var(--small-space);
    z-index: 10;
  }
}

.timeline-bkg {
  background-color: #eee;
  height: 100vh;
  left: 0;
  mix-blend-mode: multiply;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: width 0.3s ease;
  width: 0%;
  z-index: 1000;
}
