/* box model*/

* {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  box-sizing: border-box;
}
/* audio */

audio {
  display: none; 
}

/* rotation */

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@-moz-keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@-ms-keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* pulse */

@keyframes pulse {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes pulse {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-ms-keyframes pulse {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* globals */
.player-container {
  position: absolute;
  margin-top: 10px;
  height: 100px;
  width: 450px;
  background: url(https://img.xatblog.net/image/DlkS8DqaUz.jpg) no-repeat center;
  -webkit-background-size: cover;
  background-size: cover;
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  -o-filter: blur(3px);
  -ms-filter: blur(3px);
  filter: blur(3px);
  opacity: 1;
  box-shadow: 2px 2px 2px #000000;
}

.wrapper {
  position: absolute;
  margin-top: 40px;
  margin-left: 50px;
  height: 30px;
  width: 30px;
  z-index: 10;
}

.circle {
  /* Draw circles */
  
  border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.animated {
  /* Smoother animations */
  
  transform: translateZ(0);
}
/* player */

.player {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -28px 0 0 -30px;
  height: 60px;
  width: 60px;
  background-color: rgba(255, 255, 255, 0);
  cursor: pointer;
}

.player .triangle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  margin: -15px 0 0 -10px;
  border-top: 15px solid transparent;
  border-left: 25px solid #ff2a40;
  border-bottom: 15px solid transparent;
}

.player:hover .triangle {
  border-top: 15px solid transparent;
  border-left: 25px solid #F5132B;
  border-bottom: 15px solid transparent;
}

.player .carre {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  margin: -12px 0 0 -12px;
  border-top: 12px solid #ff2a40;
  border-right: 12px solid #ff2a40;
  border-left: 12px solid #ff2a40;
  border-bottom: 12px solid #ff2a40;
}

.player:hover .carre {
  border-top: 12px solid #F5132B;
  border-right: 12px solid #F5132B;
  border-left: 12px solid #F5132B;
  border-bottom: 12px solid #F5132B;
}

.player .buffering {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 50px;
  height: 50px;
  border-right: 2px solid #ff2a40;
  border-bottom: 2px solid #F2F0F0;
  border-left: 2px solid #F2F0F0;
  border-top: 2px solid #F2F0F0;
  animation: rotate 3s infinite linear;
}
/* text */
.text {
  position:absolute;
  margin-top: 58px;
  margin-left: 120px;
}
.text p{
  margin-top: -10px;
}
.text .artiste {
  font-size: 16px;
  font-weight: 600;
  padding: 0 10px 0 10px;
  color: #FFFFFF;
  background-color: #ff2a40;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width :250px;
  height: 20px;
}
.text .titre {
  font-size: 14px;
  padding: 0 10px 0 10px;
  color: #FFFFFF;
  background-color: #ff2a40;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width :250px;
  height: 20px;
}
.cover {
  position: absolute;
  background: url(https://img.xatblog.net/image/DlkS8DqaUz.jpg) no-repeat center;
  background-size: contain;
  margin-top: 15px;
  margin-left: 20px;
  height: 90px;
  width: 90px;
  box-shadow: 1px 1px 12px #000000; 
}