
  .music-player{
    background-color:#17212b;
  /*  height:450px;*/
    width: 95%;
    min-width: 380px;
    max-width: 600px;
    margin: 20px auto;
    display: grid;
    grid-template-columns: 110px 20px 100px 100px 1fr;
    grid-template-rows: 130px 50px 1fr 60px;
    grid-template-areas:
      "pochette titre-album titre-album titre-album logo-panier-album"
      "btn-lecture loop barre-de-tps volumes ."  
      "album album album album album"
      "logos logos logos logos logos";
    grid-column-gap: 10px;
    grid-row-gap: 1px;
    padding: 0px;
    border-radius: 10px; 
  }
  
 @media(max-width: 1250px){ 
    .music-player{
    background-color:#17212b;
  /*  height:450px;*/
    width: 95%;
    min-width: 380px;
    max-width: 600px;
    margin: 20px auto;
    display: grid;
    grid-template-columns: 110px 20px 80px 80px 1fr;
    grid-template-rows: 130px 50px 1fr 60px;
    grid-template-areas:
      "pochette titre-album titre-album titre-album logo-panier-album"
      "btn-lecture loop barre-de-tps volumes ."  
      "album album album album album"
      "logos logos logos logos logos";
    grid-column-gap: 10px;
    grid-row-gap: 1px;
    padding: 0px;
    border-radius: 10px; 
  }
 } 

 
  .boite {
    color:black;
    display:flex;
    justify-content: center;
    align-content: center;
    border-radius: 5px;
  }
  
  .logos {
    grid-area: logos;
    border: none;
	border-radius: 5px;
	margin: 5px auto;
  }	  
  /* Paramètres de la pochette */
  .pochette{
    grid-area: pochette;
    border: none;
  }
  .pochette img{
    margin : auto;
    width: 90%;
    border-radius : 5px;
  }
  
  /* Paramètres du titre */
  
  .titre-album{
    grid-area: titre-album;
    font-size: 18px;
    margin: auto;
    width: 100%;
    border: none;
    text-align: left;
    color:#dbdbdb;
    font-family: "Segoe UI", Tahoma, sans-serif;
  }
  #titre-song-displayed{
    font-size: 12px;
  }
  
  .logo-panier-album{
	grid-area: logo-panier-album;
	/*background-color: yellow;*/
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
	color: white;
}
  .logo-panier-album a{
	text-decoration: none;
	color: white;
  }
  .logo-panier-album:hover{	
	background-color: #29425b;
	border-radius : 0 10px 0 0;
  }

  /* Paramètres des boutons de lecture */
  .btn-lecture{
    grid-area: btn-lecture;
    display: flex;
    margin: auto;
    justify-content: center;
    align-content: center;  
    padding: 5px 0;
   /* background-color: white;*/
    border-radius: 5px;
  }
  .btn-lecture > *{
    background-color: #17212b;
    width: 30px;
    height: 30px;
    margin: auto;
    cursor: pointer;
    color: grey;
    border: none;
    font-size: 16px;
  }
  .btn-play{
   /* background-color: lightblue;*/
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: white;
  }
  /* Paramètres du bouton Autoplay */
  .loop{
    grid-area: loop;
    border: none;
    margin: auto;
  }
  .loop > *{
	color: grey;
  }  
  .play-all{
    cursor: pointer;
    background: #17212b;  
    border: none;
    /*color: white;*/
  }

  /* Paramètres de la barre de temps */
  .barre-de-tps{
    grid-area: barre-de-tps;
    width: 100%;
    margin: auto;
    display: block;
    border: none;
  }
  .song-timer{
    width: 80%;
    display:flex;
    justify-content: space-between;
    margin: auto;
    color: white;
    font-size: 12px;
  }
  .duration{
    /*background-color: lightgreen;*/
    width: 80%;
    margin: auto;
    display:flex;
    justify-content: center;
  }
  .duration input[type="range"]{
    width: 80%;
  }
    
  /* Paramètres de la barre de volumes */
  .volumes{
    grid-area: volumes;
    display: block;
    justify-content: center;
    align-content: center;
    width: 100%;
    margin: auto;
    border: none;
  }
  .volumes input[type="range"]{
    width: 100%;
    margin: auto;
  }
  .volumes i{
  /*  color: black;*/
    display: flex;
    justify-content: center;
    align-items: center;
    margin : auto;
 /*   color: white;*/
  }
 
  /* Paramètres de la playliste */
  .album{
    grid-area: album;
    display: block;
    border-radius: 5px;
    border: none;
  }

  .playlist-div{
    margin: auto;
    width: 100%;
    overflow-y: auto;
    border-radius: 0 0 10px 10px;
  }
  .titre-song{
    display: flex;
    align-items: center;
    color: #dbdbdb;
    height: 30px;
    padding-left: 10px;
 
  /*  background-color: #17212b;  */
  }
  .titre-song-fondsombre{
    background-color: #17212b;    
  }
  .titre-song-fondclair{
    background-color: #29425b;   
  }
  .song-index{
    font-size: 20px;
    margin-right: 5px;
  }
  .titre-song p{
    width: 90%;
    font-size: 16px;
    cursor: pointer;
  }
  .titre-song-select{
      background-color: #4082bc;
  }

.survol {
      color: #4082bc;
}

.blanc {
      color: white;
}

.gris{
	color: grey;
}
  