.icon {
  display: inline-block;
  width: 2em;
  height: 2em;
  font-size: 30px;
  fill: #d7dce2;
  transition: all 0.2s ease-in-out;
}

.player {
  position: relative;
  /* top: 50%; */
  /* left: 50%; */
  /* transform: translate(-50%, -50%); */
}
.player.play .player__timeline {
  transform: translateY(-90%);
}
.player.play .player__album:after {
  box-shadow: 0px 30px 28px -10px rgba(0, 0, 0, 0.2);
}
.player.play .player__album {
  top: -65px;
}
.player.play .pause {
  display: inline-block;
}
.player.play .play {
  display: none;
}
.player__album {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  margin-right: 22px;
  position: relative;
  top: -50px;
  transition: all 0.4s ease-in-out;
}
.player__album:before {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
}
.player__album:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
}
.player__albumImg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  display: none;
}
.player__albumImg.active-song {
  display: block;
}
.player__bar {
  background: #fff;
  padding: 10px 25px;
  height: 100px;
  display: flex;
  justify-content: space-between;
  border-radius: 15px;
  box-shadow: 0 30px 56px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 3;
}
.player__controls {
  display: flex;
  align-items: center;
}
.player__prev {
  transform: rotate(180deg);
  height: 80px;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 15px;
  transition: all 0.2s ease-in-out;
  margin-right: 3px;
}
.player__prev:hover {
  background: #d7dce2;
}
.player__prev:hover svg {
  fill: #fff;
}
.player__play {
  cursor: pointer;
  height: 80px;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  transition: all 0.2s ease-in-out;
  margin-right: 3px;
  position: relative;
}
.player__play:hover {
  background: #d7dce2;
}
.player__play:hover svg {
  fill: #fff;
}
.player__play svg {
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.player__play svg.pause {
  display: none;
}
.player__next {
  cursor: pointer;
  height: 80px;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  transition: all 0.2s ease-in-out;
  margin-left: -8px;
}
.player__next:hover {
  background: #d7dce2;
}
.player__next:hover svg {
  fill: #fff;
}
.player__timeline {
  background: #fff6fb;
  height: 95px;
  border-radius: 15px;
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
  z-index: 1;
  padding-left: 160px;
  flex-direction: column;
  justify-content: center;
}
.player__timelineBar {
  background: #e7e7e7;
  width: 95%;
  height: 4px;
  border-radius: 15px;
  margin-top: 13px;
  position: relative;
}
.player #playhead {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 15px;
  width: 0;
  height: 100%;
  background: #fd6d94;
}
.player__author {
  line-height: 1;
  font-weight: bold;
  margin-bottom: 6px;
  margin-top: 15px;
}
.player__song {
  line-height: 1;
  margin: 0;
  font-size: 12px;
  color: #949494;
}

.title {
  border-radius: 12px;
  background: #efefef;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: transform 0.2s ease;
}

.title .icon {
  width: 1em;
  height: 1em;
  font-size: 30px;
  margin-right: 10px;
  fill: #000;
}

.title-name {
  font-size: 16px;
  font-weight: 600;
  color: #3f3f3f;
}

.title:hover {
  transform: scale(1.05);
}

.title.active {
  border: 1px solid rgb(255, 0, 0, 0.8);
  transform: scale(1.05);
}


@media screen and (max-width: 480px) {
  .player__album {
    min-width: 80px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 22px;
    position: relative;
    top: -50px;
    transition: all 0.4s ease-in-out;
  }

  .player__prev {
    height: 60px;
    width: 60px;
    margin-right: 3px;
  }

  .player__next {
    height: 60px;
    width: 60px;
    margin-right: 3px;
  }

  .icon {
    width: 1.8em;
    height: 1.8em;
    font-size: 30px;
  }

  .player__timeline {
    padding-left: 120px;
  }

  .player {
    margin-top: 100px;
  }
}