@media(max-width:768px){
    .prev, .next{
        padding: 0!important
    }
	.audio-player{
		display: inline-flex!important
	}
	.audio-player .track-info,
	.audio-player .close-btn{
		display: none!important
	}
}
.audio-player {
    position: relative;
    color: white;
    padding: 16px;
    border: 2px solid white;
    border-radius: 0 50px 50px 0;
    font-family: sans-serif;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 10px;
    transition: all .4s ease;
}
.audio-player button:hover {
	background-color: transparent;
}
.audio-player.minimized{
    display: inline-flex;

}
.audio-player.minimized .track-info{
    display: none
}
.close-btn {
	position: absolute;
	top: -5px;
	right: -5px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: white;
	color: black;
	border: none;
	font-size: 20px;
	cursor: pointer;
	padding: 0;
}
#track-title {
	font-family:'Gilroy';
	font-weight: 700;
	font-size: 18px;
}
.subtitle {
	font-family:'Gilroy';
	font-weight: 600;
	font-size: 13px;
	color: #BDB4B4;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.controls {
	display: flex;
	align-items: center;
	gap: 10px;
}
.play {
	font-size: 24px;
	text-align: center;
	background: white;
	color: black;
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	cursor: pointer;
	padding: 8px 16px;
}
.prev, .next {
	background: transparent;
	color: white;
	font-size: 20px;
	border: none;
	cursor: pointer;
}
.seekbar {
	width: 100%;
}
