.playlist {
    border: 1px solid #2d2d2d;
    border-bottom: none;
	margin: 25px 0;
}

.audioPlayer {
    width: 100%;
    padding: 15px;
    background-color: #090909;
    display: flex;
    align-items: center;
    color: #b1b1b1;
    flex-wrap: wrap;
    border-bottom: 1px solid #2d2d2d;
}

.audioImage {
    width: 5%;
    height: 50px;
    object-fit: contain;
}

.audioImage img {
    height: 100% !important;
}

.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: 15%;
    font-size: 14px;
    line-height: 1.4em;
}

span.songName {
    display: block;
    color: #ffffff;
}

span.isNewBadge {
    color: #ffda2a;
    padding-left: 5px;
    font-size: 12px;
}

span.artistName {
    display: block;
    color: #797979;
	padding-top: 2px;
}

.audioWaveform {
    width: 67%;
    height: 40px;
    cursor: pointer;
}

.audioWaveform wave {
    overflow: hidden !important;
}

a.audioDownload {
    width: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

a.audioDownload i {
    font-family: fontawesome;
    font-style: normal;
    color: #ffffff;
}

.noSongsError {
    padding: 10px;
    color: #797979;
    font-weight: bold;
    border-bottom: 1px solid #2d2d2d;
}




/* laptop */
 @media (min-width:1025px) and (max-width:1450px) {
	 
	 .audioImage {
    width: 6%;
}

	.audioNames {
    width: 20%;
} 

.audioWaveform {
    width: 61%;
}
	 
 }
 



 /* mobile */
 @media (max-width:767px) {
	 
.audioPlayer {
    position: relative;
    padding: 10px 10px 30px 10px;
}

.audioImage {
    width: 15%;
}

.audioControls {
    width: 17%;
}

.audioNames {
    width: 58%;
}

a.audioDownload {
    width: 10%;
}

.audioWaveform {
    position: absolute;
    bottom: 10px;
    right: 10px;
    left: 10px;
    width: 93%;
	height: 15px;
}
	 
 }
 
