.style-switcher{
	position: fixed;
	right:0;
	top:77px;
	padding: 15px;
	width: 200px;
	z-index: 101;
	border-radius: 5px;
	transition: all 0.3s ease;
	transform: translateX(100%);
	background-color: var(--bg-black-50);
}
.style-switcher.open{
    transform: translateX(-15px);	
}
.style-switcher .s-icon{
	position: absolute;
	height: 40px;
	width: 40px;
	text-align: center;
	font-size: 20px;
	color: var(--text-black-900);
	right: 100%;
	margin-right: 15px;
	cursor: pointer;
	transition: all 0.3s ease;
	border-radius: 50%;
	background-color: var(--bg-black-50);
}
.style-switcher .s-icon i{
	line-height: 40px;
}
.style-switcher .s-icon:after{
	border-radius: 50%;
}
.style-switcher .style-switcher-toggler{
	top:0;
}
.style-switcher .day-night{
	top:55px;
}
.style-switcher h4{
	margin:0 0 10px;
	color: var(--text-black-700);
	font-style: 16px;
	font-weight: 600;
	text-transform: capitalize;
}
.style-switcher .colors{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.style-switcher .colors span{
	display: inline-block;
	height: 30px;
	width: 30px;
	border-radius: 50%;
	cursor: pointer;
}
.style-switcher .color-1{
	background-color: #fb839e;
}
.style-switcher .color-2{
	background-color: #9F56FD;
}
.style-switcher .color-3{
	background-color: #E30613;
}
.style-switcher .color-4{
	background-color: #2eb1ed;
}
.style-switcher .color-5{
	background-color: #1fc586;
}


.style-switcher .music{
	top:110px;
}
.style-switcher .songs{
	display: flex;
	justify-content: space-between;
	align-items: center;
	justify-content: center;
}
.player{
	width: 60px;
	height: 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
}
.player__controls{
	display: flex;
	width: 30%;
	justify-content: space-evenly;
	align-items: center;
	margin-bottom: 25px;
}
.player__btn{
	cursor: pointer;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--skin-color);
	color: #fff;
}	
.player__audio{
	visibility: hidden;
}
.player__btn--medium{
	min-height: 40px;
	min-width: 40px;
}
.bg-music{
background-color: var(--skin-color);
color: #fff;
}
.hide{
display: none;
}
