#mp3-player {
  margin: 0;
  padding: 0;
  font-family: "Press Start 2P";
  font-size: 12px;

  box-sizing: border-box;

  position: absolute;
  bottom: -400px;
  left: 0;
  background-color: #e7e7e7;
  height: 500px;
  width: 400px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, .3);
  transition: all .5s ease;

  transform: scale(.75);
  opacity: .3;
}

#mp3-player:hover {
  bottom: -60px;
  margin-bottom: 0px;
  opacity: 1;
}

#mp3-player:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, .6);
}

#mp3-player .player-img {
  width: 300px;
  height: 300px;
  position: relative;
  top: 50px;
  left: 50px;
  z-index: 2;
  transition: top 0.7s ease;
}

#mp3-player:hover .player-img {
  width: 300px;
  height: 300px;
  position: relative;
  top: -50px;
  left: 50px;
}

#mp3-player .player-img img {
  object-fit: cover;
  border-radius: 20px;
  width: 0;
  height: 0;
  opacity: 0;
  box-shadow: 0 5px 30px 5px rgba(0, 0, 0, .5);
}

#mp3-player .player-img:hover img {
  box-shadow: 0 5px 30px 5px rgba(0, 0, 0, .8);
}

#mp3-player .player-img img.active {
  width: 100%;
  height: 100%;
  transition: all .5s;
  opacity: 1;
}

#mp3-player .scroll-container {
  line-height: 1.5;
  position: absolute;
  top: 0;
  font-size: 10px;
  width: 60%;
  left: 20%;
  margin: 0;
}

#mp3-player:hover .scroll-container {
  line-height: 1.5;
  position: relative;
  top: 0;
  font-size: 10px;
  width: 60%;
  left: 0;
  width: calc(100% - 20px);
  margin: -40px 10px 0;
  overflow: hidden;
}

#mp3-player h2 {
  font-size: 20px;
  text-align: center;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  top: 0;
  left: 0;
  font-size: 10px;
  width: 100%;
  text-wrap: nowrap;
}

#mp3-player:hover h2 {
  font-size: 20px;
  text-align: center;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  top: 0;
}

#mp3-player h3 {
  font-size: 11px;
  text-align: center;
  font-weight: 500;
  margin: 10 0 0;
}

#mp3-player .player-progress {
  background-color: #fff;
  border-radius: 5px;
  cursor: pointer;
  margin: 40px 20px 35px;
  width: 90%;
  height: 6px;
  position: absolute;
  top: -10px;
}

#mp3-player:hover .player-progress {
  background-color: #fff;
  border-radius: 5px;
  cursor: pointer;
  margin: 40px 20px 35px;
  width: 90%;
  height: 6px;
  top: 0;
  position: relative;
}

#mp3-player .progress {
  background-color: #212121;
  border-radius: 5px;
  width: 0%;
  height: 100%;
  transition: width 0.1s linear;
}

#mp3-player .music-duration {
  position: relative;
  top: -25px;
  display: flex;
  justify-content: space-between;
}

#mp3-player .player-controls {
  position: relative;
  top: -15px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 30px;
  width: 100%;
}

#mp3-player .fa-solid {
  font-size: 30px;
  color: #666;
  cursor: pointer;
  margin-bottom: 6px;
  user-select: none;
  transition: all .3s ease;
}

#mp3-player .fa-solid:hover {
  filter: brightness(40%);
}

#mp3-player .play-button {
  font-size: 44px;
  position: relative;
  margin-bottom: 0;
}

#mp3-player .fa-repeat.one::after {
  content: "1";
  font-size: 10px;
  margin-left: -17px;
  top: 17px;
  font-weight: 900;
  position: absolute;
}

#mp3-player .fa-repeat.one:hover::after {
  top: 10px;
}