html {
  font-family: -apple-system, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  scroll-behavior: smooth;
}
@supports (font: -apple-system-body) {
  html {
    font: -apple-system-body;
  }
}
body {
  background-color: white;
  margin: 0;
  padding: 0;
}

.header {
  position: relative;
  height: 75px;
  width: 100%;
  background-color: #365c88;
  border-bottom: 5px solid white;
}
.header > .logo {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 150px;
  height: 75px;
  background-image: url(graphics/burgers-zoo-logo-nl.svg);
  background-size: 80% auto;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #ba0718;
}
.header > .logo:lang(de) {
  background-image: url(graphics/burgers-zoo-logo-de.svg);
}
.header > .banner {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 110px;
  right: 0px;
  height: 75px;
  max-width: 400px;
  background-image: url(graphics/banner-eco-park.svg),
    url(graphics/banner-eco-safari.svg), url(graphics/banner-eco-desert.svg),
    url(graphics/banner-eco-mangrove.svg), url(graphics/banner-eco-rimba.svg),
    url(graphics/banner-eco-bush.svg), url(graphics/banner-eco-ocean.svg);
  background-size: auto 75px;
  background-repeat: no-repeat;
  background-position-x: 0, 12%, 22%, 32%, 43%, 55%, 69%;
  background-position-y: 0;
}

.player {
  position: relative;
  padding: 0 40px;
  margin-bottom: 40px;
}
.player::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: -100px;
  background-image: radial-gradient(circle at 50% 50%, transparent, #ffffff40),
    linear-gradient(180deg, #c2e1f0, #99cbe6, #98cbe5, #bfdfef, white);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media (prefers-contrast: more) {
  .player {
    background-color: #81bbda;
  }
}
.player > .container {
  padding: 40px 0;
  max-width: 400px;
  margin: 0 auto;
}
.player > .container > .artwork {
  display: block;
  margin: 0 auto 30px;
  padding-bottom: 100%;
  background-size: cover;
  background-position: center;
  background-color: #d2e8f3;
  border-radius: 20px;
  box-shadow: 0 10px 20px 0 #5a86a066;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: scale(0.9);
}
.player.is-playing > .container > .artwork {
  transform: scale(1);
  box-shadow: 0 20px 40px 0 #5a86a030;
}
.player > .container > .name,
.player > .container > .title {
  display: block;
  margin: 0 auto 5px;
  color: white;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-shadow: 0 7px 10px #5a86a044;
}
.player > .container > .name {
  font-weight: bold;
}
.player > .container > .title {
  margin-bottom: 20px;
  font-size: 1.2rem;
}
.player > .container > .scrubber {
  position: relative;
  margin: 0 auto 10px;
  height: 7px;
  border-radius: 3.5px;
  background: #ffffff54;
  overflow: hidden;
  box-shadow: 0 5px 10px 0 #5a86a022;
}
.player > .container > .scrubber > .progress {
  background-color: white;
  width: 0;
  height: 100%;
}
.player > .container > .time {
  position: relative;
  margin: 0 auto 10px;
  height: 15px;
}
.player > .container > .time > .current-time,
.player > .container > .time > .duration {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.7rem;
  color: #ffffff80;
}
.player > .container > .time > .duration {
  right: 0;
  left: auto;
}
.player > .container > .controls {
  position: relative;
  width: 100%;
  padding-bottom: 20%;
  margin: 0 auto 30px;
}
.player > .container > .controls > .control {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  top: 0;
  width: 20%;
  padding-bottom: 20%;
  filter: drop-shadow(0 5px 10px #5a86a044);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@media (hover: hover) {
  .player > .container > .controls > .control:hover {
    transform: scale(1.1);
  }
}
.player > .container > .controls > .control:active {
  transform: scale(0.9);
}
.player > .container > .controls > .control.is-disabled {
  opacity: 0.5;
  cursor: default;
}
.player > .container > .controls > .previous {
  left: 0;
  background-size: 50% auto;
  background-image: url("graphics/previous.svg");
}
.player > .container > .controls > .backward {
  left: 20%;
  background-size: 70% auto;
  background-image: url("graphics/backward.svg");
}
.player > .container > .controls > .play {
  left: 40%;
  background-size: 80% auto;
  background-image: url("graphics/play.svg");
}
.player.is-playing > .container > .controls > .play {
  background-image: url("graphics/pause.svg");
}
.player > .container > .controls > .forward {
  left: 60%;
  background-size: 70% auto;
  background-image: url("graphics/forward.svg");
}
.player > .container > .controls > .next {
  left: 80%;
  background-size: 50% auto;
  background-image: url("graphics/next.svg");
}
.player > .container > .languages {
  font-size: 0;
  text-align: center;
}
.player > .container > .languages > .flag {
  display: inline-block;
  width: 30px;
  margin: 0 5px;
  height: 30px;
  background-size: 100% 100%;
  border-radius: 5px;
  box-shadow: 0 5px 10px 0 #5a86a044;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.player > .container > .languages > .flag.is-current {
  outline: 3px solid #ffffff70;
}
@media (hover: hover) {
  .player > .container > .languages > .flag:hover {
    transform: scale(1.1);
  }
}
.player > .container > .languages > .flag:active {
  transform: scale(0.9);
}

.episodes {
  padding: 0 20px;
  margin-bottom: 40px;
}
.episodes > .container {
  max-width: 400px;
  margin: 0 auto;
}
.episodes > .container > .title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #2b2b2b;
}
.episodes > .container > .item {
  min-height: 50px;
  position: relative;
  margin-bottom: 20px;
  cursor: pointer;
}
.episodes > .container > .item::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -10px;
  left: -10px;
  bottom: -10px;
  right: -10px;
  background-color: #daf2f9;
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.2s ease-out;
}
@media (hover: hover) {
  .episodes > .container > .item:hover::before {
    opacity: 1;
  }
}
.episodes > .container > .item.is-current::before {
  opacity: 1;
}
.episodes > .container > .item:active::before {
  opacity: 0.2;
}
.episodes > .container > .item::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 62.5px;
  right: 0;
  height: 1px;
  background-color: #f2f9fb;
}
.episodes > .container > .item:last-child::after {
  display: none;
}
.episodes > .container > .item > .name {
  padding: 0 0 5px 62.5px;
  font-weight: bold;
  color: #2b2b2b;
}
.episodes > .container > .item > .title {
  padding-left: 62.5px;
  color: #929292;
  font-size: 1.1rem;
}
.episodes > .container > .item > .artwork {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background-size: cover;
  background-position: center;
  background-color: #90c5de;
  border-radius: 10px;
  box-shadow: 0 5px 10px 0 #5a86a044;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    border-radius 0.5s ease-out;
}
@media (hover: hover) {
  .episodes > .container > .item:hover > .artwork {
    transform: scale(1.1);
  }
}
.episodes > .container > .item.is-current > .artwork {
  border-radius: 5px;
  outline: 5px solid #ffffffc7;
}

.footer {
  background-color: #111314;
  background-image: url(graphics/banner-eco-park.svg),
    url(graphics/banner-eco-safari.svg), url(graphics/banner-eco-desert.svg),
    url(graphics/banner-eco-mangrove.svg), url(graphics/banner-eco-rimba.svg),
    url(graphics/banner-eco-bush.svg), url(graphics/banner-eco-ocean.svg),
    linear-gradient(0deg, #365c88, #365c88);
  background-size: auto 30px, auto 30px, auto 30px, auto 30px, auto 30px,
    auto 30px, auto 30px, 100% 30px;
  background-repeat: no-repeat;
  background-position-x: 0px, 13px, 26px, 39px, 52px, 65px, 78px, 0px;
  background-position-y: 0;
  padding: 70px 20px 40px;
}
@media (prefers-contrast: more) {
  .footer {
    background-color: #000000;
  }
}
.footer > .container {
  max-width: 400px;
  margin: 0 auto;
}
.footer > .container > .logo {
  margin: 0 auto 40px;
  width: 150px;
  height: 40px;
  background-image: url(graphics/burgers-zoo-logo-nl.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.footer > .container > .logo:lang(de) {
  background-image: url(graphics/burgers-zoo-logo-de.svg);
}
.footer > .container > .title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
}
.footer > .container > .socials {
  font-size: 0;
  text-align: center;
  margin-bottom: 40px;
}
.footer > .container > .socials > a {
  text-decoration: none;
}
.footer > .container > .socials > a > .item {
  display: inline-block;
  width: 12%;
  padding-bottom: 12%;
  margin: 0 2%;
  background-color: #e9eff7;
  background-size: 60% auto;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@media (hover: hover) {
  .footer > .container > .socials > a > .item:hover {
    transform: scale(1.1);
  }
}
.footer > .container > .socials > a > .item:active {
  transform: scale(0.9);
}
.footer > .container > .socials > a > .item.youtube {
  background-image: url("graphics/social-youtube.svg");
  border-radius: 41% 59% 43% 57% / 55% 57% 43% 45%;
}
.footer > .container > .socials > a > .item.facebook {
  background-image: url("graphics/social-facebook.svg");
  border-radius: 44% 56% 40% 60% / 47% 58% 42% 53%;
}
.footer > .container > .socials > a > .item.instagram {
  background-image: url("graphics/social-instagram.svg");
  border-radius: 49% 51% 39% 61% / 54% 41% 59% 46%;
}
.footer > .container > .socials > a > .item.tiktok {
  background-image: url("graphics/social-tiktok.svg");
  border-radius: 53% 47% 37% 63% / 51% 40% 60% 49%;
}
.footer > .container > .socials > a > .item.email {
  background-image: url("graphics/social-email.svg");
  border-radius: 62% 38% 45% 55% / 67% 42% 58% 33%;
}
.footer > .container > .links {
  text-align: center;
}
.footer > .container > .links > a {
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
}
.footer > .container > .links > a:last-child {
  margin-bottom: 0;
}
.footer > .container > .links > a > .item {
  color: white;
}
@media (hover: hover) {
  .footer > .container > .links > a > .item:hover {
    text-decoration: underline;
  }
}
