@font-face {
    font-family: 'escabeau';
    src: url('../fonts/Escabeau-Regular.woff') format('woff'),
        url('../fonts/Escabeau-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'poppins';
    src: url('../fonts/BBBPoppinsTN-DisplayRegular.woff') format('woff'),
        url('../fonts/BBBPoppinsTN-DisplayRegular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'poppins';
    src: url('../fonts/BBBPoppinsTN-DisplayRegularItalic.woff') format('woff'),
        url('../fonts/BBBPoppinsTN-DisplayRegularItalic.woff2') format('woff2');
    font-weight: normal;
    font-style: italic;
}


body{
  font:20px/1.1em "poppins", serif;
  margin: 0px;
  line-height: 1.2;
}

h1{
  font-family: "escabeau", serif;
  font-size: 70px;
  text-align: center;
}

p{
  margin-bottom: 20px;
}


#grid-container {
  display: flex;
  flex-wrap: wrap;
}

.grid-item {
  width: 90px; /* Adjust the width and height as needed */
  height: 90px;
  background-color: white;
  border: 1px solid black; /* Adjust the border thickness and color as needed */
  padding-top: 5px;
}

#infos-podcast{
  position: fixed;
  top: 50%;
  left: 50%;
  width: 50%;
  transform: translate(-50%, -50%);
  font-family: "poppins";
  line-height: 1.3;
  background: rgba(0, 212, 219, 0.8);
  padding: 40px;
  display: none;
}

#close-infos-podcast{
  position: absolute;
  right:10px;
  top:10px;
  cursor: pointer;
}

#about-btn{
  position: fixed;
  right: 25px;
  top: 15px;
  border: 2px solid #000;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  padding-top: 8px;
  font-size: 40px;
  text-align: center;
  cursor: pointer;
  background: #FFF;
}

#infos{
  background: orange;
  width: 35%;
  min-width: 500px;
  min-height:100px;
  transform: rotate(15deg);
  transform-origin: 0 0;
  position: fixed;
  top: 8vh;
  left: 10%;
}

#infos figure{
  filter: grayscale(100%);
  mix-blend-mode: multiply;
}

.ecouter-en-direct{
  width: 33%;
  min-height:100px;
  min-width: 400px;
  background: lightblue;
  transform: rotate(-10deg);
  transform-origin: 0 0;
  position: fixed;
  top: 60vh;
  left: 55%;
  padding: 20px;
}


/* AUDIO  */

.ecouter-en-direct h3{
  width: 40%;
  font-family: "poppins", sans-serif;
}

.audio{
/*  height: 100px;*/
  width: 100%;
}

.audioplayer{
/*  width: auto;*/
/*  min-width: auto;*/
  width: 100%;
  height: 120px;
/*  padding: 0 20px 0px 40px;*/
  background: transparent;
  box-shadow: none;
/*  margin-left: 3vw;*/
}

.audioplayer .holder{
/*  width: 3vw;
  height: 3vw;*/
  width: 60px;
  height: 60px;
  margin-top: -15px;
}

.audioplayer .holder svg{
  width: 100%;
  height: auto;
}

.audioplayer .holder path{
  fill: #000;
}

.audioplayer .controls, .audioplayer .volume{
/*  display: none;*/
  color: #000;
}
.volume__speaker{
  fill: #000;
}

.green-audio-player .download{
  display: block;
  color: #000;
}

.green-audio-player .slider .gap-progress .pin{
  background: #000;
}

.green-audio-player .slider{
  background: #FFF;
}

.green-audio-player .slider .gap-progress{
  background: orange;
}

@media only screen and (max-device-width : 480px) {

  .ecouter-en-direct{
    left: 10px;
    max-width: 90%;
    min-width: 90%;
    padding:0;
    
  }

  #infos{
    min-width: 100%;
  }

  #infos-podcast{
    width: 100%;
    font-size: 12px;
  }

  #about-btn{
    left: 15px;
  }

}





