.music-player-container {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 400px;
    transition: all 0.75 cubic-bezier(0.075, 0.82, 0.165, 1);
}

.music-player-container.hide {
    width: 180px;
}

.music-player-container.hide .track-info,
.music-player-container.hide .track-nav {
    transition: all 0s ease;
    opacity: 0;
}

.toggle-player {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(68, 0, 255, 0.973);
    cursor: pointer;
}

.avatar {
    position: absolute;
    top: -30px;
    width: 100px;
    height: 100px;
    z-index: 2;
}

.avatar img {
    width: 100%;
    height: 100%;
}

.sound-bars {
    flex: 1;
    width: 50px;
    height: 50px;
    margin: 0 20px;
}

.player {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 70px;
    border-radius: 30px;
    background: rgba(85, 85, 85, 0.267);
    backdrop-filter: blur(10px);
    padding: 0 1.5rem 0 100px;
}

.track-info {
    margin-left: -70px;
    flex: 2;
    margin-right: 1rem;
    transition: all 0.25s ease;
}

.track-name {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 4px;
    opacity: 0.5;
    pointer-events: none;
}

.track-nav {
    margin-left: -10px;
    flex: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: all 0.25 ease;
}

.next-track {
    margin-left: 50px;
    padding: 5px 10px;
    opacity: 0.8;
    cursor: pointer;
}

.playpause-track ion-icon {
    font-size: 20px;
}

@media (max-width: 900px) {
    .music-player-container {
        width: 400px;
        left: 50%;
        transform: translateX(-50%);
    }

    .track-name {
        font-size: 0.8rem;
    }

    .track-artist {
        font-size: 0.5rem;
    }

    .playpause-track,
    .prev-track,
    .next-track {
        padding: 2.5px 7.5px;
    }

    .sound-bars {
        margin: 0 10px;
    }
}

button{
    background: rgba(132, 80, 255, 0.267);
    margin-left: 0px;
	padding: 25px;
	font-size: 12px;
	text-align: center;
	cursor: pointer;
    background: transparent;
	border-radius: 5px;
	border:0px;
}