.playlist_footer
{
	position: absolute;
	bottom: -75px;
	left: 15px;
	display: inline-block;
	
	width: 100%;
	
	padding: 8px 0px;
	
	text-align: left;
}

.playlist_footer_activity
{
	bottom: -30px;
    left: 425px;
	
	width: calc(100% - 400px);
}

.song_animation
{
	display: inline-block;
	position: relative;
	
	width: 40px;
    height: 44px;
	
	margin-right: 15px;
	
	background-image: url(../images/playlist_icon.svg);
    background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	
	vertical-align: middle;
}

.song_info
{
	display: inline-block;
	
	max-width: 200px;
	
	margin-right: 50px;
	
	vertical-align: middle;
}

.play_icon_pl
{
	position: relative;
	display: inline-block;
	
	width: 15px;
    height: 15px;
	
	background-image: url(../images/play_song.svg);
    background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	
	vertical-align: middle;
	cursor: pointer;
}

.pause_icon_pl
{
	position: relative;
	display: inline-block;
	
	width: 15px;
    height: 15px;
	
	background-image: url(../images/pause_work.svg);
    background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	
	vertical-align: middle;
	cursor: pointer;
}

.song_loading
{
	display: inline-block;
	
	width: 20px;
    height: 20px;
	
	border-radius: 50%;
	border: 4px solid #f3f3f3;
    border-top: 4px solid #815aed;
	
	animation: spin 2s linear infinite;
	
	vertical-align: middle;
}

@keyframes spin 
{
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.progress_playlist
{
	position: relative;
	display: inline-block;
	
	width: 150px;
	height: 3px;
	
	margin: 0px 15px;
	
	background-color: #fff;
	
	vertical-align: middle;
}

.song_length
{
	position: absolute;
	top: 0px;
	left: 0px;
	
	height: 3px;
	
	background-color: #bd00ff;
}

.control_playlist
{
	display: inline-block;
    
	width: 25px;
    height: 25px;
	
	margin: 0px 15px;
    
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    
	vertical-align: middle;
    
	cursor: pointer;
}

.prevsong
{
	background-image: url(../images/prevsong.svg);
}

.nextsong
{
	position: relative;
	background-image: url(../images/nextsong.svg);
}

.mutesong
{
	position: relative;
	
	background-image: url(../images/mutesong.svg);
	background-size: 20px;
}

.listsong
{
	position: relative; 
	
	background-image: url(../images/listsong.svg);
	background-size: 20px;
}

.sharesong
{
	background-image: url(../images/sharesong.svg);
	background-size: 20px;
}

.shareWithPlaylist
{
	position: relative;
}

.shareWithPlaylist .stop_share 
{
    left: 13px;
    top: 1px;
}

.list_content
{
	position: absolute;
	bottom: 100%;
	right: 0px;
	
	width: 200px;
	max-height: 200px;
	
	padding: 8px;
	
	background-color: #121126;
	
	border-radius: 8px;
	
	overflow-y: auto;
}

.list_content::-webkit-scrollbar {
    width: 2px;
}
.list_content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.list_content::-webkit-scrollbar-thumb {
   background: #121126;
}

.container_right_menu .list_content
{
	display: none;
}

.list_title
{
	padding-bottom: 8px;
	
	font-size: 14px;
	color: #fff;
	font-family: Poppins;
	font-style: normal;
}

.one_song_content
{
	position: relative;
	display: inline-block;
	
	width: 100%;
	
	margin-bottom: 10px;
	padding: 8px 25px 8px 4px;
	
	background: #000;
	
	border-radius: 8px;
	
	cursor: auto;
}

.song_name
{
	padding-bottom: 5px;
	
	font-family: Poppins;
	font-size: 14px;
	text-align: left;
	color: #fff;
	font-weight: 300;
	
	word-break: break-all;
}

.song_art
{
	font-family: Poppins;
	font-size: 16px;
	text-align: left;
	color: #fff;
	
	word-break: break-all;
}

.playpop
{
	position: absolute;
	top: 50%;
	right: 5px;
	transform: translateY(-50%);
	
	width: 15px;
	height: 15px;
	
	background-image: url(../images/play_song.svg);
    background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	
	cursor: pointer;
}

.opacity_control
{
	opacity: 0.3;
	cursor: auto;
}

.range_container
{
	position: absolute;
    top: -140px;
    right: -101px;
    
	width: 227px;
    
	padding: 6px 10px 6px 10px;
    
	background-color: #121126;
    
	border-radius: 8px;
    
	cursor: auto;
    
	transform: rotate(-90deg);
	z-index: 3;
}

.range_playlist
{
	width: 100%;
	
	background-color: #BCA4FF;
	
	cursor: pointer;
	outline: none;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    .hostScreenMainDiv .range_playlist {
		overflow: hidden;
		width: 100%;
		-webkit-appearance: none;
		background-color: #6c6c6c;
		border-radius: 8px;
    }
    
    .hostScreenMainDiv .range_playlist::-webkit-slider-runnable-track {
		height: 12px;
		-webkit-appearance: none;
		color: #c2acfd;
		margin-top: -1px;
    }
    
    .hostScreenMainDiv .range_playlist::-webkit-slider-thumb {
		position: relative;
		top: 1px;
		width: 11px;
		-webkit-appearance: none;
		height: 11px;
		cursor: pointer;
		background: #c2acfd;
		box-shadow: -120px 0 0 115px #6D118C;
		border-radius: 50%;
    }

}
/** FF*/
.hostScreenMainDiv .range_playlist {
  background-color: #6D118C; 
}
.hostScreenMainDiv .range_playlist::-moz-range-track {  
  background-color: #d3cccc;
}
/* IE*/
.hostScreenMainDiv .range_playlist::-ms-fill-lower {
  background-color: #6D118C; 
}
.hostScreenMainDiv .range_playlist::-ms-fill-upper {  
  background-color: #d3cccc;
}

.inline_playlist
{
	display: inline-block;
	vertical-align: middle;
}

@media screen and ( max-width: 1590px )
{
	.song_info
	{
		max-width: 150px;
		margin-right: 20px;
	}
	
	.control_playlist
	{
		margin: 0px 5px;
	}
}

@media screen and ( max-width: 1400px )
{
	.song_info
	{
		max-width: 100px;
		margin-right: 5px;
	}
	
	.progress_playlist
	{
		width: 100px;
	}
}