.playlist {
  border: 1px solid #4d4d4d;
  margin: 24px 0;
  border-radius: 4px;
  padding: 40px;

  display: flex;
  flex-direction: column;
  gap: 40px;
}

.audioPlayer {
  width: 100%;
  display: flex;
  align-items: center;
  color: #171717;
  flex-wrap: nowrap;

  gap: 10px;
}

.audioImage {
  width: 96px;
  height: 96px;

  margin-right: 40px;
}

.audioImage img {
  width: 96px;
  height: 96px;
  border-radius: 4px;

  object-fit: cover;
}

.audioControls {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  width: 8%;
  outline: none;
  color: #ffffff;
}

button.playPauseButton {
  cursor: pointer;
  background-color: transparent;
  border: none;
}

.audioNames {
  width: 200px;
}

a.songName {
  text-decoration: none !important;
  display: block;

  font-family: "Artlist Sans";
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #171717;
}

.audioPlayer span.isNewBadge {
  color: #ffda2a;
  padding-left: 5px;
  font-size: 12px;
}

span.artistName {
  display: block;
  color: #797979;
  padding-top: 2px;

  font-family: "Artlist Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.01em;
}

.audioWaveform {
  flex: 1;
  height: 40px;
  cursor: pointer;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.audioWaveform wave {
  overflow: hidden !important;
}

a.audioDownload {
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

a.audioDownload i {
  width: 24px;
  height: 24px;
}

.noSongsError {
  padding: 10px;
  color: #797979;
  font-weight: bold;
  border-bottom: 1px solid #2d2d2d;
}

/* laptop */
@media (max-width: 1450px) {
  .audioImage {
    margin-right: 0;
  }
  .audioPlayer {
    gap: 20px;
  }
}
/* small desktop */
@media (max-width: 1024px) {
  .playlist {
    padding: 30px;
    gap: 30px;
  }
  a.songName {
    font-size: 18px;
    line-height: 18px;
  }
  .audioNames {
    width: 152px;
  }
}
/* tablet */
@media (max-width: 768px) {
  .audioPlayer {
    gap: 40px;
  }

  a.songName {
    font-size: 16px;
    line-height: 16px;
  }
  .audioNames {
    width: 135px;
  }
}

/* mobile */
@media (max-width: 399px) {
  .audioPlayer {
    gap: 20px;
  }
  .playlist {
    padding: 8px;
    gap: 8px;
  }

  .audioImage {
    width: 55px;
    height: 55px;
  }

  .audioImage img {
    width: 55px;
    height: 55px;
    border-radius: 4px;

    object-fit: cover;
  }
  .audioNames {
    display: none;
  }
}

.fa, .fas {
  font-family: "Font Awesome 5 Free" !important;
}