/* ##SUPERGLOBAL## */
/* #font# */
@font-face {
  font-family: "Livory Regular";
  src: url("/font/Livory-Web-Regular.eot") format("eot");
  src: url("/font/Livory-Web-Regular.eot") format("eot"), url("/font/Livory-Web-Regular.woff") format("woff"),
    url("/font/Livory-Web-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

/* #body# */
body {
  margin: 0;
  font-family: "Livory Regular", Verdana, sans-serif;
  width: 100vw;
  height: 100lvh;
  overflow-x: hidden;
  background-color: white;
  color: #17321b;
  ::selection {
    background-color: #98c23960;
  }
  *{
    font-family: "Livory Regular", Verdana, sans-serif;
  }
}

/* #scrollbar# */
::-webkit-scrollbar {
  width: 0;
}



/* ##GLOBAL## */
/* #header# */
header {
  position: fixed;
  display: grid;
  width: 100vw;
  height: 8vw;
  z-index: 10;
  background-color: white;
  box-shadow: #00000080 0 0 0px;
  .logo-name {
    margin: auto;
    height: 100%;
    width: 20%;
    max-width: none;
    max-height: none;
    filter: brightness(1) opacity(1);
    cursor: pointer;
  }
}

.header-links-left {
  position: fixed;
  left: 0;
  display: flex;
  align-items: center;
  height: 8vw;
  margin-left: 2em;
  z-index: 20;
}

.header-links-right {
  position: fixed;
  right: 0;
  display: flex;
  align-items: center;
  height: 8vw;
  margin-right: 2em;
  z-index: 20;
}

/* #sidebar# */
#sidebar-container {
  position: fixed;
  z-index: 50;
  display: grid;
  grid-template-columns: 75vw 25vw;
  width: 100vw;
  height: 100dvh;
}
.sidebar {
  display: grid;
  grid-template-rows: 10dvh 80dvh 10dvh;
  justify-self: right;
  width: 25vw;
  background: linear-gradient(#ffffff 4vw, #ffffff80);
  backdrop-filter: blur(2px);
  transform-origin: right;
  transition: 1s ease-in-out;
}
.sidebar-head {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  padding: 3em 2.5em 0 2.5em;
  .sidebar-close {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.5vw;
    height: 1.5vw;
    border-radius: 0.25vw;
    cursor: pointer;
    img {
      width: 1vw;
      height: 1vw;
      transition: 0.75s ease-in-out;
    }
  }
  .sidebar-close:hover {
      background-color: #e0e0e080;
      img {
        transform: scale(90%) rotate(270deg);
        transition: 1s ease-in-out;
      }
  }
}
.sidebar-main {
  display: flex;
  flex-direction: column;
  padding: 1em 0;
  .nav-button {
    padding: 1em;
    font-size: x-large;
  }
  .nav-button:hover {
    background: linear-gradient(90deg, #efefef00, #efefef);
  }
}
.sidebar-void {
  cursor: pointer;
  backdrop-filter: blur(1px) brightness(0.90);
}

/* #dropdown# */
.dropdown {
  display: inline-block;
  position: relative;
  outline: none;
  margin: 10px;
}

.dropdown-button {
  width: fit-content;
  padding: 10px 10px 10px 0;
  border-radius: 5px;
  color: #17321b;
  text-align: center;
  text-decoration: none;
  font-size: x-large;
  cursor: pointer;
  transition: 0.45s ease-out;
  .icon {
    transition: ease-in-out 0.5s;
  }
}

.dropdown .dropdown-content {
  position: absolute;
  top: calc(100% + 10px);
  width: 10vw;
  padding: .5em 0;
  margin: 0;
  z-index: 10;
  background: linear-gradient(135deg, rgb(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-radius: .5em;
  border-top-left-radius: 0;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  visibility: hidden;
  transform: scaleY(0%);
  transform-origin: top;
  transition: ease-in-out 0.5s;
}

.dropdown-content a {
  color: black;
  padding: 0.75em;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: 0.35s ease-out;
  .nav-button {
    padding: 0;
    text-align: left;
    font-size: large;
    .icon {
      transition: ease-in-out 0.5s;
    }
  }
}

.dropdown-content a:hover {
  background: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(0, 0, 0, 0));
  .nav-button {
    text-decoration: underline;
    text-underline-offset: 10px;
    transition: ease-in-out 0.3s;
    .icon {
      transform: scale(80%);
      transition: ease-in-out 0.25s;
    }
  }
}

.dropdown:focus .dropdown-content {
  outline: none;
  visibility: visible;
  transform: scaleY(100%);
  transition: ease-in-out 0.25s;
}

.dropdown-button:hover,
.dropdown:focus .dropdown-button {
  background-color: #e0e0e080;
  .icon {
    transform: scale(80%);
    transition: ease-in-out 0.25s;
  }
}

.dropdown .dropdown-close {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1000;
  display: none;
}

.dropdown:focus .dropdown-close {
  display: inline-block;
}

.dropdown .dropdown-close:focus .dropdown-content {
  outline: none;
  visibility: hidden;
  opacity: 0;
}

/* #opener# */
.opener {
  display: flex;
  flex-direction: column;
  width: 100vw;
  padding-top: 0;
  .presenter {
    display: flex;
    width: 100vw;
    height: 50dvh;
    padding-top: 0;
    .presenter-images {
      width: 100vw;
      height: 100%;
      overflow: hidden;
      img {
        height: 50dvh;
        width: 100vw;
        object-fit: cover;
      }
    }
  }
}

#opener {
  height: 50dvh;
  width: 100vw;
  object-fit: cover;
}

/* #back to top# */
.back-to-top, #back-to-top {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 4vw;
  bottom: 2vw;
  width: 1.5em;
  height: 1.5em;
  padding: 0;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  font-size: xx-large;
  color: dimgray;
  text-decoration: none;
}

.back-to-top:hover, #back-to-top:hover {
  color: #98c239;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.45);
}

/* #breadcrumbs# */
.breadcrumbs, #breadcrumbs {
  width: 80vw;
  padding: 0 2em;
  padding-top: 1.5em;
  margin-bottom: -1em;
  z-index: 9;
  font-size: medium;
  color: gray;
  
  a {
    text-decoration: none;
    color: gray;
  }
  
  a:hover {
      text-decoration: underline solid;
  }
  
  u {
    color: #98c239;
  }
}

/* #main# */
main {
  margin: auto;
  width: 80vw;
  min-height: calc(75dvh - 8vw);
}

/* #section# */
section  {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* #footer# */
footer {
  position: relative;
  display: grid;
  grid-template-columns: 45vw 10vw 45vw;
  width: 100vw;
  height: 25dvh;
  background: #17321b;
  :nth-child(2n-1) {
      display: flex;
      gap: 1em;
      flex-wrap: wrap;
      a {
          padding-top: 1em;
          height: fit-content;
          color: #ffffff;
          text-decoration: none;
          font-size: x-large;
      }
      a:hover {
        color: #98c239;
        text-decoration: underline;
        text-underline-offset: 0.5em;
      }
  }
  >:nth-child(1) {
    justify-self: right;
    padding-right: 2em;
  }
  >:nth-child(2) {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      div {
          justify-content: center;
          margin-top: 0.5em;
          .logo {
          width: 5vw;
          }
          .logo-name {
            width: 10vw;
          }
          img {
            filter: brightness(100) saturate(0);
          }
      }
      p {
          margin: 2em 0;
          font-size: x-small;
          color: white;
          text-align: center;
      }
  }
  >:nth-child(3) {
      justify-self: left;
      padding-left: 2em;
  }
}

/* #dividers# */
.divider-x {
  margin-top: 3svh;
  margin-bottom: 3svh;
  margin-left: 20vw;
  margin-right: 20vw;
  border-top: 2.5px solid rgba(23, 50, 27, 0.7);
  border-radius: 25%;
}

.divider-y {
  margin-top: 5%;
  margin-bottom: 5%;
  margin-left: 2.5%;
  margin-right: 2.5%;
  border: 1px solid rgba(23, 50, 27, 0.7);
  border-radius: 25%;
}

.title-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80vw;
  height: 6vw;
  margin: 1em auto 0.5em auto;
  margin-top: 0;
  h2 {
    flex: 30%;
  }
  .divider-x {
    flex: 30%;
    margin: 0 5%;
  }
}

/* #buttons# */
.button, button {
  margin: 0.125em;
  padding: 0.5em;
  width: var(--button_width, 5em);
  min-width: fit-content;
  min-height: 1.2em;
  background: #efefef;
  border: #98c23900 solid thin;
  border-radius: 0.25em;
  color: #17321b;
  font-size: var(--button_size, large);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: 0.35s ease-out;
}
.button:hover, button:hover {
  background: #e0e0e0;
  border: #98c239 solid thin;
}
a.button:hover {
  color: #17321b;
  text-decoration: none;
}

/* #navigation# */
.nav-bar {
  display: flex;
  align-items: center;
  max-width: 100%;
  flex-wrap: wrap;
}

.nav-button {
  background: transparent;
  border: transparent;
  color: #17321b;
  padding: 8px;
  font-family: "Livory Regular", Verdana, sans-serif;
  font-size: 15pt;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.nav-button:hover {
  text-decoration: underline;
  text-underline-offset: 0.45em;
  transition: 0.25s ease-in-out;
}

/* #header# */
.header-button {
  display: flex;
  align-items: end;
  gap: 0.5em;
  padding: 0.5em;
  background-color: transparent;
  border-radius: 0.25em;
  border: none;
  color: #17321b;
  text-align: center;
  font-size: x-large;
  transition: 0.45s ease-out;
  .icon {
    transition: ease-in-out 0.5s;
  }
}
.header-button:hover {
  background-color: #e0e0e080;
  border: none;
  .icon {
    transform: scale(85%);
    transition: ease-in-out 0.25s;
  }
}



/* ##TEXT## */
/* #titles# */
h2 {
  text-align: center;
  font-size: xx-large;
  font-weight: bold;
  
}

h4 {
  text-align: center;
  text-decoration: underline;
  font-size: x-large;
  font-weight: bold;
  margin: 1em 0 0.5em 0;
}

h6 {
  text-align: center;
  text-decoration: underline;
  font-size: large;
  font-weight: bold;
  margin: 1em 0 0 0;
}

/* #article# */
article {
  margin: auto;
  width: 60vw;
  a {
    text-decoration-line: none;
    color: #98c239;
    &:hover {
      text-decoration-line: underline;
      color: #98c239;
    }
    &::selection {
      color: #587A29;
    }
  }
}

article.split {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 3em;
}

/* #list# */

/* #links# */
.textlink {
  text-decoration-line: none;
  color: #98c239;
  cursor: pointer;
}

.textlink::selection {
  color: #587A29;
}

.textlink:hover {
  text-decoration-line: underline;
  color: #98c239;
}

/* ##TABLES## */

/* ##FORMS## */
  

/* ##IMAGES## */
.icon {
  display: inline;
  height: 1.2em;
  margin-top: -0.1em;
  vertical-align: text-bottom;
}

/* ##MODULES## */
/* #tiles# */
.tile-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1vw;
  margin: auto;
  padding: 2vw;
  width: 75vw;
  *[class$="tile"] {
    border: #d0d0d0 solid 2px;
    border-radius: 0.5vw;
    transition: ease-in-out 0.5s;
    *[class$="tile-description"] {
      border-radius: 0 0 0.45vw 0.45vw;
      backdrop-filter: saturate(1) blur(2px);
      transition: ease-in-out 0.5s;
    }
    .large-tile-description {
      border-radius: 0.45vw 0 0 0.45vw;
    }
  }
  *[class$="tile"]:hover {
    border: #98c239 solid 2px;
    transition: ease-in-out 0.5s;
    *[class$="tile-description"] {
      backdrop-filter: saturate(0.8) blur(4px);
      transition: all ease-in-out 0.5s;
    }
    *[class$="tile-filter"] {
      backdrop-filter: brightness(1);
      transition: ease-in-out 0.5s;
    }
  }
}

.large-tile {
  display: flex;
  flex-direction: row;
  width: 61vw;
  height: 32vw;
  background-size: cover;
  text-decoration: none;
}
.large-tile-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 20vw;
  height: 32vw;
  background: linear-gradient(270deg, #ffffff08, #00000080);
  backdrop-filter: blur(2px) saturate(0.75);
  h2 {
    margin: 0 0.5vw;
    font-size: xx-large;
    font-weight: normal;
    color: #ffffff;
  }
  p {
    margin: 0 0.5vw 0.5vw 0.5vw;
    text-align: center;
    font-size: x-large;
    color: #ffffff;
  }
  .button, button {
    background-color: #f0f0f040;
    color: #ffffff;
  }
  .button:hover, button:hover {
    background-color: #d0d0d040;
    border: solid #e0e0e040 thin;
    color: #ffffff;
  }
}
.large-tile-filter {
  position: absolute;
  width: 61vw;
  height: 32vw;
  border-radius: 0 0 0.45vw 0.45vw;
  backdrop-filter: brightness(0.9);
  transition: ease-in-out 0.5s;
}

.medium-tile {
  display: flex;
  flex-direction: column-reverse;
  width: 30vw;
  height: 16vw;
  background-size: cover;
  background-position: center;
  text-decoration: none;
}
.medium-tile-description {
  display: grid;
  grid-template-rows: 40% 60%;
  width: 30vw;
  height: 5vw;
  background: linear-gradient(180deg, #ffffff08, #00000080);
  backdrop-filter: blur(2px) saturate(0.75);
  h2 {
    margin: 0 0.5vw;
    text-align: left;
    font-size: x-large;
    font-weight: normal;
    color: #ffffff;
  }
  p {
    margin: 0 0.5vw 0.5vw 0.5vw;
    font-size: medium;
    color: #ffffff;
  }
}
.medium-tile-filter {
  position: absolute;
  width: 30vw;
  height: 16vw;
  border-radius: 0 0 0.45vw 0.45vw;
  backdrop-filter: brightness(0.9);
  transition: ease-in-out 0.5s;
}

.small-tile {
  display: flex;
  flex-direction: column-reverse;
  width: 14.5vw;
  height: 13vw;
  background-size: cover;
  text-decoration: none;
}
.small-tile-description {
  display: grid;
  grid-template-rows: 40% 60%;
  width: calc(14.5vw);
  height: 5vw;
  background: linear-gradient(180deg, #ffffff08, #00000080);
  backdrop-filter: blur(2px) saturate(0.75);
  h2 {
    margin: 0 0.5vw;
    font-size: x-large;
    font-weight: normal;
    color: #ffffff;
  }
  p {
    margin: 0 0.5vw 0.5vw 0.5vw;
    font-size: medium;
    color: #ffffff;
  }
}
.small-tile-filter {
  position: absolute;
  width: 14.5vw;
  height: 13vw;
  border-radius: 0 0 0.45vw 0.45vw;
  backdrop-filter: brightness(0.9);
  transition: ease-in-out 0.5s;
}

.audio-tile {
  display: flex;
  flex-direction: column-reverse;
  width: 20vw;
  height: 16vw;
  background-size: cover;
  background-position: center;
  text-decoration: none;
}
.audio-tile-description {
  display: grid;
  grid-template-rows: auto auto 2vw;
  width: 20vw;
  height: 7vw;
  background: linear-gradient(180deg, #ffffff08, #00000080);
  backdrop-filter: blur(2px) saturate(0.75);
  h2 {
    margin: 0 0.5vw;
    text-align: center;
    font-size: x-large;
    font-weight: normal;
    color: #ffffff;
  }
  p {
    margin: 0 0.5vw 0.5vw 0.5vw;
    font-size: medium;
    text-align: center;
    color: #ffffff;
  }
}
.audio-tile-filter {
  position: absolute;
  width: 20vw;
  height: 16vw;
  border-radius: 0.5vw;
  backdrop-filter: brightness(0.85);
}

/* #cards# */
.card-container {
    display: flex;
    justify-content: center;
    gap: 1vw;
    width: 75vw;
    margin: auto;
    padding: 2vw;
    user-select: none;
}
.wide-card {
  display: grid;
  grid-template-columns: 8vw 16vw;
  width: 24vw;
  height: 10vw;
  border: #d0d0d0 solid 2px;
  border-radius: 0.5vw;
  background-image: url("/img/tiles/Termine_Tile.jpg");
  background-size: auto 10vw;
  background-repeat: no-repeat;
}
.wide-card-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 10vw;
  background: linear-gradient(0deg, #00000040 0%, #ffffff00 10%);
  backdrop-filter: blur(2px) brightness(0.85) saturate(0.6);
  border-radius: 0.45em 0 0 0.45em;
  color: white;
  text-align: center;
  transition: ease-in-out 0.25s;
  h2 {
  margin: 0;
  font-size: x-large;
  font-weight: normal;
  }
  p {
  margin: 0;
  }
  .wide-card-divider {
    background: linear-gradient(90deg, #ffffff00, #fff, #ffffff00);
    margin: 0.25em auto; width: 7.5em; height: 0.1em;
  }
}
.wide-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5em 0.75em 0.5em 0.75em;
  background-color: #f8f8f8;
  border-radius: 0 0.45em 0.45em 0;
  h4 {
    margin-top: 0;
    margin-bottom: 0.25em;
    text-decoration: none;
  }
  p {
    margin: 0;
    height: 6em;
  }
  .wide-card-buttons {
    display: flex;
    grid-template-columns: 50% 50%;
    justify-content: space-between;
    gap: 1em;
    width: 15vw;
    height: 2.5em;
    .button, button {
      align-self: flex-end;
      margin-top: 0.3em;
    }
  }
}
.card {
    display: grid;
    grid-template-rows: 5vw calc(var(--card_height, 15vw) - 5vw);
    width: 15vw;
    height: var(--card_height, 15vw);
    border: #d0d0d0 solid 2px;
    border-radius: 0.5vw;
    background-image: url(/img/tiles/Termine_Tile.jpg);
    background-size: 15vw 5vw;
    background-repeat: no-repeat;
    
    > :first-child {
    border-radius: 0.4vw 0.4vw 0 0;
    }
    > :last-child {
    border-radius: 0 0 0.4vw 0.4vw;
    }
}
.card-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(0deg, #00000040 0%, #ffffff00 10%);
    backdrop-filter: blur(2px) brightness(0.85) saturate(0.6);
    color: white;
    text-align: center;
    transition: ease-in-out 0.25s;
    h2 {
    margin: 0;
    font-size: x-large;
    font-weight: normal;
    }
    p {
    margin: 0;
    }
}
.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10%;
  padding: 5%;
  background-color: #f8f8f8;
  > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  }
  h4 {
  margin: 0;
  font-size: x-large;
  font-weight: normal;
  }
  p {
  margin: 0;
  text-align: center;
  line-height: 1.5em;
  font-size: large;
  }
  .button {
  background-color: #efefef;
  border: #98c23900 solid thin;
  margin: 0.125em;
  }
  .button:hover {
  background-color: #e0e0e0;
  border: #98c239 solid thin;
  }
}
.card:hover {
    border: #98c239 solid 2px;
    transition: ease-in-out 0.25s;
    .card-title {
    backdrop-filter: blur(2px) brightness(0.85) saturate(1);
    }
}

/* ##SPECIAL## */
/* #reviews# */
.review-container {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 1.5vw;
  width: 70vw;
  justify-content: center;
  margin: auto;
}
.review {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 35vw;
  height: fit-content;
  min-height: 10vw;
  background-color: #f8f8f8;
  border: solid 0.15em #cacaca;
  border-radius: 0.25em;
  .divider-x {
      margin: 0.5em;
      width: 20vw;
  }
}
.review_head {
  display: grid;
  grid-template-areas: "A C" "B D";
  grid-template-columns: 50%;
  width: 33.5vw;
  padding: 0.5em 1em 0.25em 1em;
}
.review_body {
  width: 33.5vw;
  padding: 0.5em 1em 1.5em 1em;
}
.review_title {
  grid-area: A;
  margin:  0.125em 0 0.25em 0;
  height: fit-content;
  line-height: 1;
  font-size: x-large;
  font-weight: bold;
}
.review_name {
  grid-area: B;
  height: fit-content;
  font-size: medium;
  font-style: italic;
}
.review_rating {
  grid-area: C;
  display: flex;
  justify-content: end;
  margin-left: 0.5em;
  height: fit-content;
  font-size: x-large;
  img {
      width: 1.5em;
      height: 1.5em;
      margin-right: -0.25em;
  }
}
.review_date {
  grid-area: D;
  display: flex;
  justify-content: end;
  height: fit-content;
  font-size: medium;
  font-style: italic;
}
.review_content {
  grid-area: F;
  align-self: stretch;
  margin: 0;
  height: fit-content;
  font-size: large;
}

/* #audio player# */
.now-playing {
    position: sticky;
    left: 24vw;
    right: 24vw;
    bottom: 0;
    z-index: 20;
    display: flex;
    flex-direction: row;
    gap: 1em;
    padding: 1vw;
    width: 50vw;
    height: fit-content;
    background-color: #ffffff;
    border: solid 0.25vw #e0e0e080;
    border-bottom: none;
    border-radius: 1em 1em 0 0;
    .player-info {
        display: grid;
        grid-template-columns: 4vw 16vw;
        align-items: center;
        gap: 1em;
        width: 20vw;
        img {
        width: 4vw;
        height: 4vw;
        appearance: none;
        object-fit: cover;
        border-radius: 50%;
        border: solid 0.25em transparent;
        background-image: none;
        background-repeat: no-repeat;
        background-origin: border-box;
        background-clip: border-box;
        }
        span {
        overflow: hidden;
        text-wrap-mode: nowrap;
        text-overflow: ellipsis;
        }
        h4 {
        margin: 0;
        overflow: hidden;
        text-align: left;
        text-wrap-mode: nowrap;
        text-overflow: ellipsis;
        }
        div {
        display: flex;
        flex-direction: column;
        }
    }
    .audio-controls {
        display: flex;
        gap: 0.25em;
        padding: 1vw 0;
        width: 30vw;
        flex-shrink: 1;
        height: 2vw;
        z-index: 10;
        #play, #mute, #back, #forward {
            width: 2vw;
            height: 2vw;
            background-color: #e0e0e080 !important;
            background-repeat: no-repeat !important;
            background-size: contain !important;
            border: none;
            border-radius: 20%;
        }
        #play:hover, #mute:hover, #back:hover, #forward:hover {
            background-color: #c0c0c080 !important;
        }
        #play:active, #mute:active, #back:active, #forward:active {
            background-color: #98c23580 !important;
        }
        #play.playing {
            background-image: url(/img/icons/g-icon-pause.svg) !important;
        }
        #play.paused {
            background-image: url(/img/icons/g-icon-play.svg) !important;
        }
        #mute.muted {
            background-image: url(/img/icons/g-icon-mute.svg) !important;
        }
        #mute.low {
            background-image: url(/img/icons/g-icon-low-vol.svg) !important;
        }
        #mute.mid {
            background-image: url(/img/icons/g-icon-mid-vol.svg) !important;
        }
        #mute.high {
            background-image: url(/img/icons/g-icon-high-vol.svg) !important;
        }
        #progress {
            appearance: none;
            margin: auto 0;
            padding: 0;
            flex-basis: 10vw;
            flex-grow: 1;
            height: 1vw;
            overflow: hidden;
            background: none;
            border: none;
        }
        #progress::-webkit-slider-thumb {
            height: 1em;
            aspect-ratio: 1;
            border-radius: 50%;
            box-shadow: 0 0 0 0.25vw inset #b8e255;
            border-image: linear-gradient(90deg, #b8e255 50%,#e0e0e080 0) 0 1/calc(50% - 0.25vw/2) 100vw/0 calc(100vw + 0.05vw);
            -webkit-appearance: none;
            appearance: none;
        }
        #duration {
            margin: auto 0;
            text-align: center;
            width: 7em;
            color: #17351b;
        }
        #volume {
            appearance: none;
            position: absolute;
            z-index: 10;
            margin: 0 0.5em;
            padding: 0;
            width: 0;
            height: 1vw;
            transform: translate(27.75vw, -0.625vw) rotate(270deg);
            transform-origin: 0;
            overflow: hidden;
            background: none;
            border: none;
            transition: 1s ease-in-out;
        }
        #volume::-webkit-slider-thumb {
            height: 1em;
            aspect-ratio: 1;
            border-radius: 50%;
            box-shadow: 0 0 0 0.25vw inset #b8e255;
            border-image: linear-gradient(90deg, #b8e255 50%,#e0e0e080 0) 0 1/calc(50% - 0.25vw/2) 100vw/0 calc(100vw + 0.05vw);
            -webkit-appearance: none;
            appearance: none;
        }
        #mute:hover ~ #volume {
            width: 4.75vw;
            transition: 0.75s ease-in-out;
        }
        #volume:hover {
            width: 4.75vw;
        }
    }
}