@charset "UTF-8";
/* CSS Document */
/*_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-*/ :root {
  --accent-color: #A02685;
  --background-color: #12191a;
  --light-color: #fff;
}
* {
  padding: 0;
  margin: 0;
  transition: all 0.4s ease-out;
  box-sizing: border-box;
}
ul, ol, li {
  list-style-type: none;
}
html, body {
  height: 100%;
}
body, #fullscreen {
  background: #F3EDD3;
  color: #222;
  font-family: 'Quicksand', sans-serif;
}
h1, h2, h3, h4 {
  padding: 0;
  margin: 0;
}
p a {
  color: var(--accent-color);
  text-decoration: none;
}
.hideMe {
  display: none;
}
/*_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-*/
body {
  background: var(--background-color);
  color: var(--light-color);
}
body.no-scroll {
  overflow: hidden;
}
/*_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-*/
.home #wrap {
  display: flex;
}
.home #primary_header {
  width: 50%;
  min-height: 100vh;
  background: url("images/intro.svg") no-repeat 60% center/180%;
}
.home .content {
  width: 50%;
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 2em 0;
}
.home .content article p {
  line-height: 1.6em;
}
.home .content article {
  width: 70%;
}
.home .content article header h2 {
  font-size: 1.8em;
  border-bottom: solid 0.3em var(--light-color);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
.home .content article header p {
  font-size: 1.2em;
  margin-bottom: 1.5rem;
}
.home .content article .col_it {
  columns: 2;
  column-gap: 3%;
}
.home .content article .col_it p {
  margin-bottom: 1em;
  font-size: 0.8em;
}
.home .content article footer, .page_footer {
  text-align: right;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: solid 1px var(--light-color);
  padding-top: 2rem;
  margin-top: 2rem;
}
.home .content article footer a, .page_footer a {
  display: inline-block;
  border: solid 1px var(--light-color);
  border-radius: 5em;
  padding: 0.5em 1.5em 0.5em 2em;
  color: var(--light-color);
  text-decoration: none;
  text-align: center;
  width: 10em;
}
.home .content article footer a:after {
  content: "";
  display: inline-block;
  background: url("images/back-left.svg") no-repeat center/contain;
  height: 0.8em;
  width: 1.5em;
  transform: rotate(180deg);
  margin-left: 0.25em;
  transition: all 0.4s;
}
.home .content article footer a:hover {
  background-color: var(--accent-color)
}
.home .content article footer a:hover:after {
  transform: rotate(180deg) translateX(-50%);
  transition: all 0.2s;
}



.small {
  font-size: 0.7em;
  opacity: 0.5;
  text-align: left;
  margin: 0 3%;
  flex-grow: 2;
  max-width: 50em;
}
.small p {
  margin-bottom: 1em;
}
.qr-code {
  display: block;
  width: 80px;
  height: auto;
  min-width: 80px;
}
.page_footer {
  border: none;
  flex-direction: row-reverse;
  padding: 1em;
  margin: 0;
  background: #070A0A;
  justify-content: flex-end;
}
.page_footer p {
  margin-bottom: 0;
}
/*_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-*/
.popUp {
  position: fixed;
  left: 50%;
  top: 150%;
  width: 80%;
  transform: translate(-50%, -50%);
  border: solid 1px #85898b;
  border-radius: 0.5em;
  background: var(--background-color);
  padding: 1em 0;
  z-index: 3;
  box-shadow: 0 0 70px rgba(0, 0, 0, .4);
}
.popUp img {
  width: 100%;
  height: auto;
  display: block;
}
.overlay {
  width: 100%;
  height: 0%;
  background: var(--background-color);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2;
  cursor: pointer;
  opacity: 0;
}
.popUp.show {
  top: 50%;
}
.popUp.show + .overlay {
  height: 100%;
  opacity: .7;
}
.closePop {
  text-align: right;
  font-size: 0.7em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0 1rem;
}/*_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-*/


.p_404 #wrap{min-height:100vh; display:flex; align-items:center; justify-content:center; text-align:center;}
.p_404 .content{padding:2em 4em; border:solid 1px white; border-radius:20em;}
.p_404 .content header h2{margin-bottom:.3em;}
/*_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-*/
.archive_header {
  position: fixed;
  top: 2em;
  right: 0;
  background: #070a0a;
  color: white;
  padding: 0.5em 0.9em 0.5em 0.6em;
  display: flex;
  justify-content: flex-end;
  z-index: 3000;
  border-radius: 5em 0 0 5em;
}
.bt_full_screen:before {
  content: "↔";
  display: block;
  transform: rotate(-45deg);
}
.bt_full_screen {
  cursor: pointer;
}
.bt_full_screen span {
  display: none;
}
#folders {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}
#folders article {
  width: 20%;
  padding-top: 20%;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  position: relative;
  border: solid 0.3vw #070A0A;
  background-color: #070A0A;
}
#folders article.nowplaying {
  width: 40%;
}
.nowplaying:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0em;
  bottom: 0em;
  background: var(--accent-color) /* url("images/select.svg") no-repeat left bottom/5%*/ ;
  mix-blend-mode: multiply;
  opacity: 1;
  z-index: 1;
}
#folders article .date {
  background: #000000;
  color: var(--light-color);
  padding: 1rem;
  font-size: 0.7em;
  display: none;
}
#folders article a {
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.8);
  color: var(--light-color);
  text-decoration: none;
  flex-grow: 2;
  text-align: left;
  justify-content: center;
  opacity: 0;
  padding: 3vw;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
#folders article.nowplaying a {
  background: none;
  opacity: 1;
}
#folders article.nowplaying header p {
  width: 50%;
}
#folders article p {
  padding-top: 1em;
  font-size: 0.8em;
  letter-spacing: 0.01em;
  line-height: 1.5em;
}
.in_player {
  font-size: 1em !important;
}
.in_player:before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url("images/loader.gif") no-repeat left bottom/contain;
  position: relative;
  top: 0.15em;
  margin-right: 0.25em;
}
#folders article a:hover {
  opacity: 1;
}
#folders article footer {
  display: flex;
  justify-content: space-between;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 0 1em;
}
/**/
#volet {
  position: fixed;
  left: 0;
  top: 100vh;
  width: 100%;
  height: 100%;
  z-index: 2000;
  background: var(--background-color);
  overflow: hidden;
}
#volet.visible {
  left: 0;
  top: 0;
}
#the_sound {
  display: none;
}
.contentC {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.nav_tool {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding: 1em;
  align-items: center;
}
.nav_tool a span {
  display: none;
}
.nav_tool a {
  display: block;
}
.nav_tool a:before {
  content: "";
  display: block;
  width: 3em;
  height: 3em;
  background: red;
}
.back a:before {
  background: url("images/select.svg") no-repeat center/contain;
}
.playliste a:before {
  background: url("images/playlist.svg") no-repeat center/contain;
  height: 2em;
}
.heads {
  margin-bottom: 2vw;
  position: relative;
}
.heads img {
  width: 64%;
  height: auto;
  margin: auto;
  display: block;
}
.stripe div {
  width: 8.5%;
  height: 1px;
  background: var(--accent-color);
  transform-origin: left center;
  transform: rotate(-127deg);
  left: 18.4%;
  position: absolute;
  top: 21%
}
.stripe div.s-right {
  transform: rotate(-80deg);
  left: auto;
  right: 12.4%;
  width: 6%;
}
.player {
  width: 50%;
  position: relative;
}
.controle {
  display: flex;
}
.controle > div {
  width: 33%;
}
.buttons ul {
  display: flex;
  justify-content: space-around;
  max-width: 65%;
  margin: auto;
}
.buttons ul li {
  width: 20%;
}
.buttons ul li img {
  width: 60%;
  display: block;
  margin: auto;
  margin-bottom: 0.5rem;
}
.buttons span {
  display: none;
}
.buttons a {
  width: 100%;
  padding-top: 100%;
  border-radius: 50%;
  border: solid 1px var(--light-color);
  display: block;
  position: relative;
}
.buttons a:hover {
  /*background: rgba(250, 250, 250, 0.6);
	transition:none;*/
}
.buttons a:before, .buttons a:after {
  content: "";
  display: block;
  width: 30%;
  height: 30%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: solid 1px var(--light-color);
  border-radius: 50%;
  background: var(--background-color);
}
.buttons a:after {
  border: none;
  width: 0%;
  height: 0%;
}
.buttons a.activ:after, .buttons a:hover:after {
  background: var(--accent-color);
  width: 20%;
  height: 20%;
  transition: all 0.2s;
}
.buttons .play a.activ:after, .buttons .play a:hover:after {
  background: #85AC54;
}
.buttons .rew a.activ:after, .buttons .av a.activ:after, .buttons .rew a:hover:after, .buttons .av a:hover:after {
  background: #A18E37;
}
/* ------------------------------------ OPTIONS */
.options {
  display: flex;
  justify-content: center;
}
.options h2 {
  font-size: .9em;
  text-transform: uppercase;
  margin-bottom: 1em;
}
.options div + div h2 {
  margin-bottom: 0em;
}
.options p {
  margin: 0.5em 0;
  font-size: 0.8em;
}
.options > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 5%;
}
.options .bt_power {
  border-radius: 50%;
  height: 2em;
  width: 2em;
  border: solid 1px var(--light-color);
  cursor: pointer;
  position: relative;
}
.options .bt_power:before {
  content: "";
  position: absolute;
  border: solid 1px var(--light-color);
  left: 50%;
  top: 50%;
  width: 80%;
  height: 80%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: block;
}
@keyframes powered {
  from {
    opacity: .5;
  }
  to {
    opacity: 1;
  }
}
.options .bt_power:after {
  content: "";
  position: absolute;
  background: var(--accent-color);
  left: 50%;
  top: 50%;
  width: 30%;
  height: 30%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: block;
  /*animation:powered .8s alternate infinite;*/
}
.options .bt_monitor, .options .bt_full_screen {
  width: 2em;
  height: 3em;
  display: block;
  border: solid 1px var(--light-color);
  border-radius: 5em;
  position: relative;
  cursor: pointer;
}
.options .bt_monitor:before, .options .bt_full_screen:before {
  content: "";
  width: 80%;
  padding-top: 80%;
  top: 10%;
  display: block;
  border: solid 1px var(--light-color);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: url(images/navette.svg) no-repeat center/contain;
  transition: all 0.2s;
}
.bt_monitor.switch:before, .bt_full_screen.switch:before {
  top: 35%;
  transition: all 0.2s;
}
.footer_playlist {
  display: none;
}
/* ------------------------------------ Bandes*/
#cassette {
  display: none;
}
@keyframes rotation {
  from {
    transform: rotate(0) translateZ(0);
    ;
  }
  to {
    transform: rotate(-360deg) translateZ(0);
    ;
  }
}
@-webkit-keyframes rotation {
  from {
    transform: rotate(0) translateZ(0);
    ;
  }
  to {
    transform: rotate(-360deg) translateZ(0);
    ;
  }
}
@keyframes reduce {
  from {
    transform: scale(1) translateZ(0);
    ;
  }
  to {
    transform: scale(.41) translateZ(0);
    ;
  }
}
.bandes .illu img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  transform: scale(1.05);
}
.bandes > div {
  position: relative;
}
.bandes .illu {
  will-change: transform;
  position: relative;
  z-index: 2;
}
.bandes .magnetic {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform-origin: center;
  background: var(--accent-color);
  border-radius: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}
.bandes .illu.rotate {
  animation: rotation 4s infinite linear;
  -webkit-animation: rotation 4s infinite linear;
}
.bandes .second .illu.rotate {
  animation: rotation 4.5s infinite linear;
  -webkit-animation: rotation 4.5s infinite linear;
}
.bandes {
  display: flex;
  justify-content: space-around;
}
.bandes > div {
  width: 40%;
}
/*-------------------------- COUNTER */
.the_counter {
  position: absolute;
  left: 50%;
  top: 3%;
  transform: translateX(-50%);
  border: solid 1px #a3a6a7;
  padding: 3px 3px 3px 3px;
  display: flex;
  align-items: center;
}
.the_counter:after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0.5em;
  margin-right: 0.3em;
  background: url("images/counter.svg") no-repeat center/contain;
}
.container_counter {
  position: relative;
  border: solid 1px #a3a6a7;
  font-size: 0.6vw;
  text-align: center;
  padding: .2em 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.counter {
  font-family: monospace;
  letter-spacing: .8em;
  position: relative;
  left: 0.4em;
}
.container_counter:before {
  content: "";
  display: block;
  border-left: solid 1px #a3a6a7;
  border-right: solid 1px #a3a6a7;
  width: calc(50% + .2em);
  position: absolute;
  top: 0;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.container_counter:after {
  content: "";
  display: block;
  background: #a3a6a7;
  width: 1px;
  position: absolute;
  top: 0;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}
/*-------------------------- COUNTER */
.infos {
  font-size: 0.5em;
  margin-right: 1%;
}
.infos p {
  border-top: solid 1px var(--light-color);
  padding-top: 0.5em;
  margin-top: 0.5em;
}
/**********************/
/**********************/
/**********************/
/*----------------- VUMETRE */
.meter {
  width: 50%;
  height: 150px;
  background: #ccc;
  position: relative;
  overflow: hidden;
}
.needle {
  background: black;
  width: 120px;
  height: 2px;
  transform: rotate(20deg);
  transform-origin: 100% 0%;
  position: absolute;
  bottom: 10px;
  left: 30px;
  transition: transform .05s;
  z-index: 9;
}
#meters {
  display: flex;
}
.meter {
  margin-right: 20px;
}
/*------------------ PLAYLIST */
#the_playlist {
  position: absolute;
  right: -40%;
  top: 0;
  width: 40%;
  background: #eeece2;
  height: 100%;
  overflow: scroll;
  color: var(--background-color);
}
.show_pl #the_playlist {
  right: 0;
}
.show_pl .player {
  transform: translateX(-40%);
}
#the_playlist .current_title {
  color: white;
  position: fixed;
  left: 0;
  top: -3em;
  z-index: 800;
}
#the_playlist .current_desc {
  background: #070a0a;
  padding: 1em;
  border-radius: 0 5em 5em 0;
  padding-right: 3em;
  font-size: 0.8em;
}
.no-scroll #the_playlist .current_title {
  top: 2em;
}
#the_playlist .current_title strong {
  font-weight: normal;
}
#the_playlist .current_title span {
  color: var(--accent-color);
  font-weight: bold;
  letter-spacing: .05em;
}
/*BLOC INFOS*/
.info {
  display: flex;
  align-items: center;
  border: solid 1px black;
  color: white;
  background: var(--background-color);
}
.info div {
  padding: 1em 2em;
}
.info div:first-child {
  width: 33%;
  padding: 0;
  background: white;
}
.info div:last-child {
  flex-grow: 2;
  padding-right: 3em;
}
.info img {
  display: block;
  width: 100%;
  height: auto;
}
.info h2 {
  font-size: 0.8em;
  margin-bottom: 1rem;
  font-weight: normal;
  display: inline-block;
  padding: 0.3em 1em;
  border: solid 1px white;
  border-radius: 5em;
}
.info h1 {
  font-size: 1.4em;
  margin-bottom: 1rem;
  color: var(--accent-color);
}
.info td + td {}
#the_playlist .info td:nth-child(1) {
  font-weight: normal;
}
#the_playlist .info td:nth-child(2), #the_playlist .info th:nth-child(2), #the_playlist .info td:nth-child(3), #the_playlist .info th:nth-child(3) {
  display: table-cell !important;
}
/**/
#the_playlist .the_list {
  margin: auto;
  padding: 3em;
}
#the_playlist .the_list:after {
  content: "";
  display: block;
  Width: 5em;
  padding-top: 5em;
  margin: 3em 0 0 auto;
  background: url("images/vacuum.svg") no-repeat center/contain;
  opacity: .2;
}
#the_playlist table {
  width: 100%;
  font-size: 0.8em;
}
#the_playlist table.can_change tbody tr {
  cursor: pointer;
}
#the_playlist table.can_change tbody tr td:first-child {
  position: relative;
}
#the_playlist table.can_change tbody tr td:first-child:before {
  content: "";
  display: block;
  height: 1em;
  width: 1em;
  border-radius: 50% 0 50% 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-300%, -50%) rotate(45deg);
  background: transparent;
  opacity: 0;
  transition: all 0.8s;
}
#the_playlist table.can_change tbody tr:hover td:first-child:before {
  background: var(--background-color);
}
#the_playlist table.can_change tbody tr.current_play td:first-child:before {
  background: var(--accent-color);
}
#the_playlist table.can_change tbody tr:hover td:first-child:before, #the_playlist table.can_change tbody tr.current_play td:first-child:before {
  transform: translate(-175%, -50%) rotate(45deg);
  opacity: 1;
  transition: transform 0.4s opacity 0.2s;
}
#the_playlist td, #the_playlist th {
  border-bottom: dotted 1px grey;
  padding: 0.7em 0.5em 0.7em 0;
  text-align: left;
}
#the_playlist td:nth-child(1) {
  font-weight: bold;
}
#the_playlist td:nth-child(3), #the_playlist th:nth-child(3) {}
#the_playlist th, #the_playlist tbody tr:last-child td {
  border-bottom: solid 3px var(--background-color);
}
#the_playlist thead {
  margin-bottom: 0.5em;
}
#the_playlist caption {
  display: none;
  font-size: 1.1em;
  text-align: left;
  margin-bottom: 0em;
  background: var(--background-color);
  color: var(--light-color);
  padding: 0.4em;
}
.edito {
  font-size: 0.8em;
}
table + .edito {
  padding-top: 4em;
}
.edito p {
  margin-bottom: 1em;
  line-height: 1.5em;
}
.edito p:first-child {
  font-size: 1.2em;
}
.bg-cover {
  position: absolute;
  top: 0;
  left: 10%;
  overflow: hidden;
  width: 30%;
  border-radius: 0 0 50% 50%;
  mix-blend-mode: multiply;
}
.bg-cover img {
  width: 100%;
  height: auto;
  display: block;
}
.pl_close {
  display: none;
}
@keyframes aiguille {
  0% {
    transform: rotate(-2deg) translateZ(0);
    ;
  }
  10% {
    transform: rotate(-10deg) translateZ(0);
    ;
  }
  15% {
    transform: rotate(-10deg) translateZ(0);
    ;
  }
  20% {
    transform: rotate(1deg) translateZ(0);
    ;
  }
  25% {
    transform: rotate(-15deg) translateZ(0);
    ;
  }
  30% {
    transform: rotate(10deg) translateZ(0);
    ;
  }
  36% {
    transform: rotate(-10deg) translateZ(0);
    ;
  }
  38% {
    transform: rotate(15deg) translateZ(0);
    ;
  }
  45% {
    transform: rotate(-10deg) translateZ(0);
    ;
  }
  50% {
    transform: rotate(10deg) translateZ(0);
    ;
  }
  56% {
    transform: rotate(-15deg) translateZ(0);
    ;
  }
  60% {
    transform: rotate(-10deg) translateZ(0);
    ;
  }
  64% {
    transform: rotate(12deg) translateZ(0);
    ;
  }
  71% {
    transform: rotate(-10deg) translateZ(0);
    ;
  }
  77% {
    transform: rotate(0deg) translateZ(0);
    ;
  }
  81% {
    transform: rotate(-10deg) translateZ(0);
    ;
  }
  84% {
    transform: rotate(12deg) translateZ(0);
    ;
  }
  89% {
    transform: rotate(-10deg) translateZ(0);
    ;
  }
  95% {
    transform: rotate(5deg) translateZ(0);
    ;
  }
  100% {
    transform: rotate(-20deg) translateZ(0);
    ;
  }
}
.vumetres {
  position: relative;
}
.bloc_vumetres {
  display: flex;
  width: 40%;
  margin: auto;
  justify-content: space-around;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.bloc_vumetres > div {
  width: 40%;
  height: 65%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}
.bloc_vumetres .aiguille {
  will-change: transform;
  width: 1px;
  background: white;
  position: absolute;
  left: 50%;
  bottom: -15%;
  transform: rotate(-50deg);
  transform-origin: center bottom;
  height: 75%;
}
.vumetres.run .aiguille {
  animation: aiguille 3s infinite reverse;
}
/**********************/
/**********************/
/**********************/
/*----------------- RESPONSIVE */
@media (max-width: 1400px) {
  #folders > article {
    width: calc(100% / 4);
    padding-top: calc(100% / 4);
    font-size: 0.9em;
  }
  #folders article.nowplaying {
    width: 50%;
  }
  .home .content article {
    width: 80%;
    font-size: 0.8em;
  }
}
@media (max-width: 1085px) {
  #folders > article {
    width: calc(100% / 3);
    padding-top: calc(100% / 3);
  }
  #folders article.nowplaying {
    width: calc(100% * 2/3)
  }
  .player {
    width: 75%;
  }
  #the_playlist {
    width: 50%;
    right: -50%;
  }
  .show_pl .player {
    transform: translateX(-55%);
  }
  #the_playlist td:nth-child(3), #the_playlist th:nth-child(3) {
    display: none;
  }
  #the_playlist thead, #the_playlist tbody {
    font-size: 0.8em;
  }
  .show_pl .player {
    width: 45%;
  }
  .show_pl .the_counter {
    transform: scale(0.8) translateX(-60%);
    top: 0;
  }
  .options {
    font-size: 0.7em;
  }
  #folders article a {
    background: none;
    opacity: 1;
    padding: 0;
    justify-content: flex-start;
    flex-direction: column-reverse;
  }
  #folders article header {
    background: rgba(0, 0, 0, 0.8);
    padding: 0.5em 2em;
  }
  #folders article header h2 {
    font-size: 1.1em;
  }
  #folders article header p {
    max-height: 4em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0;
  }
  #folders article footer {
    position: static;
    background: #070A0A;
    padding: 0.5em 2em;
  }
  #folders article footer p {
    padding-top: 0;
  }
  .nowplaying::before {
    top: 0;
    bottom: auto;
    border-radius: 0 0 50% 0;
    display: none;
  }
  .container_counter {
    font-size: 0.7em;
  }
}
@media (max-width: 950px) {
  .archive_header {
    display: none;
  }
  .home #primary_header {
    width: 33%;
    background: url("images/intro.svg") no-repeat 60% 20%/180%;
  }
  .home .content {
    width: 65%;
    padding: 2em 0;
  }
  #volet {
    left: 100vw;
    top: 0;
  }
  .player {
    width: 90%;
  }
  .show_pl .player {
    transform: translate(-100%, -0%);
    opacity: 0;
  }
  /*------------------------------------------------------*/
	.contentC{min-height:calc(100% - 2em);}
  #the_playlist {
    top: auto;
    bottom: 0;
    bottom: env(safe-area-inset-bottom);
    height: 2em;
    overflow: auto;
    left: 0;
    width: 100%;
  }
  .show_pl #the_playlist {
    width: 100%;
    top: auto;
    bottom: 0;
    z-index: 2;
    overflow: auto;
    height: 100%;
    transition: all 0.6s;
  }
  /*#the_playlist {
    width: 100%;
    right: 0%;
    top: calc(100vh - 2.1em);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .show_pl #the_playlist {
    width: 100%;
    top: 0;
    z-index: 2;
    overflow: auto;
  }*/
  #the_playlist .current_title {
    position: sticky;
    left: 0;
    top: 0 !important;
    display: flex;
    flex-direction: row-reverse;
  }
  #the_playlist .current_desc {
    padding: 0em;
    border-radius: 0;
    flex-grow: 2;
    border-right: solid 1px #192324
  }
  #the_playlist .current_title p {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    padding: 0.7em 1em;
    background: #070a0a;
    text-align: left;
    color: white;
    border-bottom: solid 1px var(--background-color);
  }
  .footer_playlist {
    display: block;
    cursor: pointer;
    order: -1;
    font-size: 0.8em;
  }
  .footer_playlist p:after {
    content: "☴";
    float: right;
    margin-left: 1em;
    transform: scale(1.9);
    transform-origin: center right;
    line-height: .65;
    opacity: .6;
  }
  .show_pl .footer_playlist p:after {
    content: "×";
    transform: scale(2.8);
  }
  /*------------------------------------------------------*/
  .bg-cover {
    width: 20%;
    left: 12%;
  }
  #the_playlist .the_list {}
  .pl_close {
    display: block;
    position: absolute;
    border-radius: 50%;
    height: 2em;
    width: 2em;
    background: var(--background-color) url(images/back-left.svg) no-repeat center/50%;
    left: 6%;
    top: 3%;
    cursor: pointer;
  }
  .pl_close p {
    display: none;
  }
  #folders > article {
    width: 50%;
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    border: none;
    border-bottom: dotted 1px grey;
    padding-top: 17%;
  }
  #folders article a {
    opacity: 1;
    background: none;
    font-size: 0.8em;
    padding-left: 34%;
    justify-content: space-around;
  }
  #folders article a header {
    background: none;
    padding: 0.5em 1em;
  }
  #folders article a header p {}
  #folders article a header h2 {
    font-size: 1.1em;
  }
  #folders article p {
    padding-top: 0;
  }
  #folders article footer {
    position: static;
    margin-bottom: 0.8em;
    background: none;
    border: none;
    padding: 0.5em 1em;
  }
  .the_counter {
    border: none;
    background: #070a0a;
  }
  .counter {
    font-size: 1.3em;
  }
  .container_counter {
    font-size: 0.7em;
    border: none;
  }
  .container_counter::before, .container_counter::after {
    display: none;
  }
  .player {
    width: 55%;
    position: static;
    
  }
  .controle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .vumetres, .options {
    display: none;
  }
  .controle > div {
    padding-top: 1em;
    width: 70%;
  }
  #primary_header {
    font-size: 0.8em;
  }
  .nowplaying::before {
    width: 13%;
    padding-top: 13%;
    background-size: 60%;
    border-radius: 50%;
    left: 0.5em;
    top: 0.5em;
  }
  .bg-cover {
    left: auto;
    right: 10%;
  }
  #the_playlist thead, #the_playlist tbody {
    font-size: 0.9em;
  }
  #folders article.nowplaying {
    background-color: var(--accent-color);
    width: 50%;
  }
  #folders article.nowplaying header p {
    width: 100%;
  }
  /*LA CASSETTE*/
  .heads {
    display: none;
  }
  .bandes {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: auto;
    margin-top: 0;
  }
  .bandes > div {
    width: 50%;
    position: relative;
  }
  .bandes .first {
    transform: scale(0.7) translate(24%, -7%);
  }
  .bandes .second {
    transform: scale(0.7) translate(-25%, -7%);
  }
  .bandes .illu:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 26%;
    padding-top: 26%;
    background: url("images/k7-center.svg") no-repeat center/contain;
  }
  .bandes .illu img {
    opacity: 0;
  }
  #cassette {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 200;
    object-fit: contain;
  }
  .controle > div {
    padding-top: 1em;
    width: 100%;
  }
  .buttons ul li {
    width: 24%;
  }
  .buttons a {
    border-radius: 0;
    width: 100%;
    padding-top: 40%;
  }
  .buttons a::before, .buttons a::after {
    border-radius: 0;
    width: 0.5em;
    height: 0.5em;
  }
  .buttons a.activ::after, .buttons a:hover::after {
    width: 0.45em;
    height: 0.45em;
  }
  .buttons ul li img {
    width: 40%;
  }
  .buttons li:first-child a {
    border-radius: 0.5em 0 0 0.5em;
  }
  .buttons li:last-child a {
    border-radius: 0 0.5em 0.5em 0;
  }
  .closeC {
    width: 100vh;
    height: 4em;
    background: url(images/back.svg) no-repeat center/4em;
    transform: rotate(-90deg);
    cursor: pointer;
    transform-origin: right top;
    right: 100vw;
    top: 0;
    position: absolute;
  }
  .the_counter {
    transform: none;
    position: static;
    margin: auto;
    width: 80%;
    font-size: 0.7em;
    background: transparent;
    margin-bottom: 0.3em;
    ;
  }
  .the_counter:after {
    display: none;
  }
  .container_counter {
    font-size: 1em;
  }
  .popUp {
    width: 95%;
  }
}
@media (max-width: 500px) {
  .home #wrap {
    display: block;
  }
  .home #primary_header {
    width: 100%;
    background-size: 160%;
    min-height: 10em;
    background-color: rgba(0, 0, 0, .3);
    background-position: -13em 30%;
  }
  .home .content {
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 3em 0;
    min-height: 0;
  }
  .home .content article .col_it {
    columns: 1;
    display: none;
  }
  .home .content article footer {
    text-align: center;
    display: block;
  }
  .page_footer {
    border: none;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
  .page_footer p {
    margin-bottom: 1em;
  }
  .small {
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.8em;
  }
  .qr-code {
    margin: auto;
    margin-bottom: 2em;
  }
  #volet {
    left: 0;
    top: 100vh;
  }
  #folders > article, #folders article.nowplaying {
    width: 100%;
    padding-top: 33%;
  }
  #folders article.nowplaying header p {
    width: 100%;
  }
  #the_playlist {
    top: auto;
    bottom: 0;
    bottom: env(safe-area-inset-bottom);
    height: calc(0vh + 4em);
    overflow: auto;
  }
  .show_pl #the_playlist {
    width: 100%;
    top: auto;
    bottom: 0;
    z-index: 2;
    overflow: auto;
    height: 100%;
    transition: all 0.6s;
  }
  #the_playlist .current_title {
    display: flex;
    flex-direction: column;
  }
  .show_pl #the_playlist .current_title {}
  .info {
    flex-direction: column;
  }
  .info > * {
    width: 100% !important;
  }
  .info div:last-child {
    padding-right: 2em;
    padding-top: 2em;
  }
  #the_playlist .the_list {
    padding: 2rem;
  }
  .bg-cover {
    width: 40%;
  }
  #the_playlist td:nth-child(2), #the_playlist th:nth-child(2) {
    display: none;
  }
  .contentC {
    min-height: calc(100% - 8em);
  }
  .player {
    min-width: 100%;
    margin-top: 0;
  }
  .closeC {
    width: 100%;
    height: 4em;
    background: url(images/back.svg) no-repeat center/20%;
    transform: rotate(180deg);
    cursor: pointer;
    position: static;
    transform-origin: inherit;
    opacity: .6;
  }
  .footer_playlist {}
  .bandes {
    margin-top: 0;
    width: 100%;
  }
  .container_counter {
    font-size: 1em;
  }
  .popUp, .overlay {
    display: none;
  }
  .content header p a {
    color: white;
    pointer-events: none;
  }
}