@import url(https://fonts.bunny.net/css?family=onest:400,500,600,700);

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Onest', sans-serif;
}

.player {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.album-cover {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    margin-right: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
    filter: drop-shadow(1px 1px 3px #ffffff66);
}

.play-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease;
}

.play-button:hover {
    opacity: 0.8;
}

.play-button i {
    font-size: 35px;
    margin-top: 3px;
}

.volume-control {
    margin: 0 20px;
    display: flex;
    align-items: center;
}

.volume-control i {
    font-size: 20px;
    margin-right: 10px;
}

.volume-slider {
    width: 100px;
    margin-left: 10px;
    height: 4px;
    border-radius: 2px;
    -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    cursor: pointer;
}

.track-info {
    margin-left: 20px;
}

.artist {
    font-weight: 500;
    margin-bottom: 4px;
    font-size: 0.9em;
}

.song {
    font-size: 0.9em;
    font-weight: 500;
}

.controls-group {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 991px) {
    .volume-control {
        display: none;
    }
	
	.player {
		padding-left: 10px;
	}
	
	.album-cover {
		display: none;
	}
}

@media screen and (min-width: 992px) {
	.player {
		padding: 0 9%;
	}
}