:root {
  --transition: 0.8s;
  --hue: 20;
  --saturate: 10%;
  --lightness: 15%;
  --bgColor: hsl(var(--hue), var(--saturate), var(--lightness));
  --bgColorHover: hsl(var(--hue), calc(var(--saturate) + 50%), var(--lightness));
  --bgColorLight: hsl(var(--hue), calc(var(--saturate) + 50%), var(--lightness));
  --bgColorLighter: hsla(var(--hue), calc(var(--saturate) + 10%), calc(var(--lightness) + 40%), 0.5);
  --whiteLight: #ffffff71;
}

*,
:before,
:after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Exo 2", sans-serif;
  font-weight: 200;
  color: #fff;
}

[data-tooltip] {
  position: relative;
}

[data-tooltip]:hover::before {
  content: attr(data-tooltip);
  position: absolute;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: white;
  top: -1.25rem;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
}

body {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, var(--bgColor)), to(var(--bgColorLight)));
  background: linear-gradient(var(--bgColor) 20%, var(--bgColorLight));
  min-height: 100vh;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

header {
  background: var(--bgColor);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 20;
}

header img {
  margin: 1rem auto 0.5rem auto;
  height: 5rem;
}

h1 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 0.25rem;
  background: var(--bgColorLighter);
}

footer p {
  color: var(--bgColor);
  font-weight: 500;
}

footer span {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--bgColor);
}

.couv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.couv img {
  height: calc(100vh - 7rem);
  width: auto;
  position: fixed;
  top: 7rem;
  z-index: -1;
  opacity: 0.5;
}

.hidden {
  display: none;
}

.active {
  -webkit-transform: scale(1.025);
          transform: scale(1.025);
  background: var(--bgColorHover) !important;
  border: 1px solid var(--whiteLight) !important;
  border-radius: 0.5rem;
}

/* VOLUME & PARAM */
.volume {
  left: 1rem;
}

.volume button img {
  width: 100%;
  height: 90%;
}

.parameters {
  right: 1rem;
}

.parameters button {
  margin-left: 8rem;
}

.parameters button img {
  width: 100%;
  height: 100%;
}

.parameters button img:hover {
  -webkit-animation: turn 23s infinite;
          animation: turn 23s infinite;
}

@-webkit-keyframes turn {
  0% {
    -webkit-transform: rotate(0deg) scale(1.015);
            transform: rotate(0deg) scale(1.015);
  }
  100% {
    -webkit-transform: rotate(-1800deg) scale(1.015);
            transform: rotate(-1800deg) scale(1.015);
  }
}

@keyframes turn {
  0% {
    -webkit-transform: rotate(0deg) scale(1.015);
            transform: rotate(0deg) scale(1.015);
  }
  100% {
    -webkit-transform: rotate(-1800deg) scale(1.015);
            transform: rotate(-1800deg) scale(1.015);
  }
}

.parameters button,
.volume button,
.reset-btn {
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: none;
  background: transparent;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.35;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.parameters button:hover,
.volume button:hover,
.reset-btn:hover {
  -webkit-filter: brightness(1.75);
          filter: brightness(1.75);
  -webkit-transform: rotate(0deg) scale(1.05);
          transform: rotate(0deg) scale(1.05);
  opacity: 0.85;
}

.reset-btn {
  width: 100%;
  text-align: right;
}

.reset-btn img {
  width: 2rem;
  height: 100%;
}

.reset-btn:hover img {
  background: rgba(255, 255, 255, 0.219);
  border-radius: 50%;
}

.reset-btn:active {
  -webkit-animation: spin 0.1s ease-in;
          animation: spin 0.1s ease-in;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg) scale(1.015);
            transform: rotate(0deg) scale(1.015);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1.015);
            transform: rotate(360deg) scale(1.015);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg) scale(1.015);
            transform: rotate(0deg) scale(1.015);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1.015);
            transform: rotate(360deg) scale(1.015);
  }
}

.parameters,
.volume {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  top: 1rem;
  height: 5rem;
  max-width: 10rem;
  z-index: 30;
}

.parameters button p,
.volume button p {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  margin-top: -1.25rem;
}

.parameters ul,
.volume ul {
  background: var(--bgColor);
  padding: 1rem;
  list-style: none;
  border: 3px solid var(--whiteLight);
  border-radius: 1rem;
  margin-top: 0.25rem;
}

.parameters ul input,
.volume ul input {
  width: 100%;
  height: 2rem;
  margin: .5rem 0;
}

.parameters .flex-list,
.volume .flex-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.parameters .flex-list input,
.volume .flex-list input {
  width: 3rem;
}

.txt-link a {
  text-decoration: none;
  display: block;
  text-align: center;
  color: var(--whiteLight);
  font-weight: 400;
  padding: 0.25rem 0;
  margin-top: 0.5rem;
  border-radius: 0.25rem;
  border: 1px solid var(--whiteLight);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.txt-link a:hover {
  background-color: var(--whiteLight);
  color: #000000c4;
  font-weight: 600;
}

.song-vizualisation {
  position: relative;
  top: 5rem;
}

.song-vizualisation .visualizer-container {
  position: absolute;
  top: .5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.song-vizualisation .visualizer-container canvas {
  width: 100%;
  max-width: 72rem;
  height: 7rem;
  margin: auto;
}

.song-vizualisation .time-slider {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: -webkit-sticky;
  position: sticky;
  bottom: 5rem;
  margin: 0;
  padding: 0;
}

.song-vizualisation .time-slider input {
  width: 100%;
  max-width: 72rem;
}

/* PLAYER */
.player-container {
  position: absolute;
  bottom: 8rem;
  width: 100%;
  height: 20rem;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.player-info {
  font-weight: 300;
  font-size: 1.25rem;
  position: fixed;
  top: 7rem;
  left: calc(50% - 1.5rem);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0.041)));
  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.041));
  color: rgba(0, 0, 0, 0.85);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  height: calc(100vh - 7rem);
  width: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 0.5rem;
  z-index: -1;
}

.player-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  bottom: 1.75rem;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: 100%;
  padding: 0.5rem;
  background: var(--bgColorLighter);
  border-radius: 20rem 20rem 0 0;
  max-width: 50rem;
  margin: 2rem auto 0 auto;
  -webkit-box-shadow: 0 0 30px 0 #0000006e;
          box-shadow: 0 0 30px 0 #0000006e;
}

/* BUTTONS */
.play-btn,
.next-btn,
.prev-btn {
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.play-btn {
  font-size: 2.5rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  border: none;
  background: var(--bgColorHover);
  color: var(--whiteLight);
  font-weight: 700;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2), inset 5px 5px 10px 0 rgba(255, 255, 255, 0.1);
          box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2), inset 5px 5px 10px 0 rgba(255, 255, 255, 0.1);
}

.play-btn:hover {
  -webkit-filter: brightness(1.25);
          filter: brightness(1.25);
  -webkit-box-shadow: inset 0 0 0 65px rgba(255, 255, 255, 0.1), inset -5px -5px 10px 0 rgba(255, 255, 255, 0.1);
          box-shadow: inset 0 0 0 65px rgba(255, 255, 255, 0.1), inset -5px -5px 10px 0 rgba(255, 255, 255, 0.1);
  text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.2);
}

.play-btn:hover .pause-sign span {
  -webkit-box-shadow: inset 1px 1px 1px 0 rgba(0, 0, 0, 0.2), inset -1px -1px 1px 0 rgba(255, 255, 255, 0.2);
          box-shadow: inset 1px 1px 1px 0 rgba(0, 0, 0, 0.2), inset -1px -1px 1px 0 rgba(255, 255, 255, 0.2);
}

.play-btn:active {
  -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.226);
          box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.226);
}

.pause-sign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40%;
}

.pause-sign span {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  display: block;
  border-radius: 0.15rem;
  -webkit-box-shadow: inset 2px 2px 1px 0 rgba(0, 0, 0, 0.25), inset -2px -2px 1px 0 rgba(255, 255, 255, 0.25);
          box-shadow: inset 2px 2px 1px 0 rgba(0, 0, 0, 0.25), inset -2px -2px 1px 0 rgba(255, 255, 255, 0.25);
  width: 0.75rem;
  height: 100%;
  background: var(--whiteLight);
  margin: 0.5rem;
}

.next-btn,
.prev-btn {
  background: var(--bgColorHover);
  border-radius: 50%;
  border: none;
  -webkit-box-shadow: inset 7px 7px 3px 0 rgba(255, 255, 255, 0.05);
          box-shadow: inset 7px 7px 3px 0 rgba(255, 255, 255, 0.05);
  text-align: center;
  margin: auto 1.5rem;
  padding: 0.5rem 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  width: 4rem;
  height: 4rem;
}

.next-btn:hover,
.prev-btn:hover {
  -webkit-filter: brightness(1.25);
          filter: brightness(1.25);
  -webkit-box-shadow: inset 0 0 0 30px rgba(255, 255, 255, 0.1), inset -7px -7px 3px 0 rgba(255, 255, 255, 0.05);
          box-shadow: inset 0 0 0 30px rgba(255, 255, 255, 0.1), inset -7px -7px 3px 0 rgba(255, 255, 255, 0.05);
}

.next-btn:hover .signs span,
.prev-btn:hover .signs span {
  -webkit-box-shadow: inset 1px 1px 1px 0 rgba(0, 0, 0, 0.2), inset -1px -1px 1px 0 rgba(255, 255, 255, 0.2);
          box-shadow: inset 1px 1px 1px 0 rgba(0, 0, 0, 0.2), inset -1px -1px 1px 0 rgba(255, 255, 255, 0.2);
}

.next-btn div span:nth-child(1) {
  -webkit-transform: skewX(45deg);
          transform: skewX(45deg);
}

.next-btn div span:nth-child(2) {
  -webkit-transform: skewX(-45deg);
          transform: skewX(-45deg);
}

.prev-btn div span:nth-child(1) {
  -webkit-transform: skewX(-45deg);
          transform: skewX(-45deg);
}

.prev-btn div span:nth-child(2) {
  -webkit-transform: skewX(45deg);
          transform: skewX(45deg);
}

.signs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.signs div {
  margin: 0.25rem;
}

.signs div span {
  display: block;
  height: 1rem;
  width: 0.55rem;
  background: var(--whiteLight);
  -webkit-box-shadow: inset 2px 2px 1px 0 rgba(0, 0, 0, 0.25), inset -2px -2px 1px 0 rgba(255, 255, 255, 0.25);
          box-shadow: inset 2px 2px 1px 0 rgba(0, 0, 0, 0.25), inset -2px -2px 1px 0 rgba(255, 255, 255, 0.25);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

@media (max-width: 724px) {
  header img {
    margin: 1rem auto 0.5rem auto;
    height: 4rem;
  }
  .list-container {
    width: 80% !important;
    padding: 0 1.5rem !important;
  }
  .list-container li p {
    font-size: 1.1rem;
  }
  .list-container li span {
    font-size: 1.5rem !important;
  }
  .player-container {
    bottom: 5rem;
    height: 20rem;
  }
  .song-vizualisation {
    top: 2.5rem;
  }
  .list-container
.player-controls {
    margin: 1.5rem auto 0 auto;
    padding: 2rem 0.5rem 1rem 0.5rem;
    border-radius: 50% 50% 0 0;
  }
  .play-btn {
    font-size: 1.65rem;
    width: 5.5rem;
    height: 5.5rem;
  }
  .next-btn,
  .prev-btn {
    margin: auto 0.25rem;
    width: 2.5rem;
    height: 2.5rem;
  }
  .prev-btn div span,
  .next-btn div span {
    height: 0.5rem;
    width: 0.25rem;
    background: var(--whiteLight);
  }
  .signs div {
    margin: 0.11rem;
  }
  .pause-sign {
    height: 35%;
  }
  .pause-sign span {
    width: 0.45rem;
    margin: 0.3rem;
  }
}
/*# sourceMappingURL=styleV2.css.map */