/* ALAIN */
@font-face {
font-family : '"istock"';
src : url('/font/Istok-Regular.ttf');
}
@font-face {
font-family : '"istock"';
font-style : italic;
src : url('/font/Istok-Italic.ttf');
}

@font-face {
font-family : '"istock"';
font-weight : bold;
src : url('/font/Istok-Bold.ttf');
}

@font-face {
font-family : '"istock"';
font-style : italic;
font-weight : bold;
src : url('/font/Istok-BoldItalic.ttf');
}

li {
font-size : 25px;
line-height : 1.5;
letter-spacing : 0.6px;
margin : 0 15px auto 15px;
text-align : center;
vertical-align: middle;
}

.box {
display : flex;
justify-content : space-evenly;
vertical-align: middle;
background-color : gray;
opacity : 1;
background-color: rgba(255, 255, 255, 0.6);
-webkit-backdrop-filter: blur(30px);
backdrop-filter: blur(30px);

}
.boxcb {
display : flex;
justify-content : space-evenly;
vertical-align: middle;
align-items: center;
background-color : #cccce4;
opacity : 0.8;
}

h1 {
font-size : 32px;
margin : 0 20px auto 20px;
text-align : center;
color : black;
}

h2 {
font-size : 25px;
text-align : center;
margin : 10px 20px auto 20px;
color : black;
}

h3 {
font-size : 18px;
text-align : center;
vertical-align: middle;
margin : 10px 10px auto 10px;
color : black;
/*background-color : #e8e8f5; */
}

/* fin ALAIN */
body {
/* ALAIN */
  font-family : "istock", Helvetica, Arial, sans-serif;

/* FIN ALAIN */
  background-color: lightgreen;
  /* Smoothly transition the background color */
  transition: background-color .5s;
}

.player {
  height: 95vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color : #cccce4;
  opacity : 0.85;
  width : auto;
}

.details {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-top: 25px;
  margin-left: 10px;
}

.track-art {
  margin: 25px;
  height: 300px;
  width: 300px;
  background-image: url("img/accueil.jpg?auto=compress&cs=tinysrgb&dpr=3&h=250&w=250");
  background-size: cover;
  border-radius: 15%;
}

.now-playing {
  font-size: 1rem;
}

.track-name {
  font-size: 2.5rem;
}

.track-artist {
  font-size: 1.5rem;
}

.buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.playpause-track, .prev-track, .next-track {
  padding: 25px;
  opacity: 0.8;
  align-items: center;

  /* Smoothly transition the opacity */
  transition: opacity .2s;
}

.playpause-track:hover, .prev-track:hover, .next-track:hover {
  opacity: 1.0;
}

.slider_container {
  width: 75%;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Modify the appearance of the slider */
.seek_slider, .volume_slider {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 5px;
  background: black;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

/* Modify the appearance of the slider thumb */
.seek_slider::-webkit-slider-thumb, .volume_slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  background: white;
  cursor: pointer;
  border-radius: 40%;
}

.seek_slider:hover, .volume_slider:hover {
  opacity: 1.0;
}

.seek_slider {
  width: 60%;
}

.volume_slider {
  width: 30%;
}

.current-time, .total-duration {
  padding: 10px;
}

i.fa-volume-down, i.fa-volume-up {
  padding: 10px;
}

i.fa-play-circle, i.fa-pause-circle, i.fa-step-forward, i.fa-step-backward {
  cursor: pointer;
}