#player-area {
	border-top:1px solid black;
	position:fixed;
	bottom:0;
	background-color:rgba(10,10,13,0.93);
	width:100%;
	height:200px;
	color:white;
	z-index:5;
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;
	transition:all 0.5s;
	visibility:hidden;
	opacity:0;
	display:flex;
	align-items: center;
}

#player-elem {
	box-sizing: border-box;
	min-width:200px;
	xwidth:20%;
	height:200px;
	float:right;	
	padding:0px;
	margin:0px;	
	border-left:1px solid #262626;
	z-index:1;
	flex: 1;
	transition: right 0.2s;
}


/* desktop view: track info on left side of player area */
#track-info {
	xborder:1px solid grey;
	width:35%;
	display:block;
	overflow:hidden;
	padding:5px;
}	
	
#image-container {
	xborder:1px solid magenta;
	aspect-ratio: 1/1;
	padding:5px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

img#track-image {
	xborder:1px solid lime;
	border-radius:5px;
	box-shadow: 5px 5px 5px rgba(0,0,0,0.55);
	aspect-ratio: 1/1;
	max-width:100px;
	width:100%;
	height:100%;
	
	display:inline-block;
}

#track-info-text {
	xborder:1px solid red;
	xfont-family: 'Montserrat', sans-serif;
	display:inline-block;
	width:calc(90% - 100px);
	height:100px;
	overflow-x:hidden;
	overflow-y:hidden;
	padding: 5px;
	text-shadow:0px 0px 5px rgba(0,0,0,0.55);	
	text-shadow: 1px 1px 0px black;
	font-size:1em;
	color:#b3b3b3;
}

#track-name{
	xborder:1px solid green;
	display:block;
	color:#e6e6e6;
	font-size:1.2em;
	xmargin-bottom:2px;
	transition: text-shadow 0.2s;
	overflow:hidden;
	width:100%;
	xheight:50px;
	height:50%;
	max-width:100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}


#artist-name{
	xborder:1px solid green;
	xdisplay:block;
	height:50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}


#video-name{
	xborder:1px solid red;
	margin-top:10px;
	color:#6d6d6d;
	height:50px;
	overflow:hidden;
	padding:10px;
}



#controls{
	xborder:1px solid grey;
	width: 25%;
	height:100%;
	xmargin:auto auto;
	padding:10px 0px 0px 0px;
	xfloat:right;
	user-select:none;
}


.button-section{
	xborder:1px solid grey;
	width:100%;
	overflow:hidden;
	xdisplay:flex;	
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.button-section-content {
	xborder:1px solid red;
	margin: 0 auto;
	xmin-width:30%;
	text-align:center;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* the play, previous, next, stop and pause/play button down in the player area */
.button-section-content > .button {
	xborder:1px solid grey;
	xborder:1px solid rgba(0, 0, 0, 0);
	xbackground-color:#181a1b;
	margin-bottom:10px;
	cursor:pointer;	
    xtransition: background-color 50ms linear;
	transition: all 0s;
	color: #a19f9f; /* a19f9f */
	text-align: center;
	font-size: 1.5em;
	text-shadow: 2px 2px 0px black;


	border-radius:6px;
	width: 50px;
	height:50px;
	float:left;
	margin-right:5px;
	display:inline-flex;

}

.button:hover{
	xbackground-color: rgba(191, 191, 191, 0.1);
	border:1px solid rgb(82, 82, 82);
	xfilter:brightness(1.1);
}



/* make play button bigger with round background */
.button-section-content > #play-button-container.button {
	xborder:1px solid orange;
	background-color:rgba(255,255,255,0.1);
	xbackground-color:#a19f9f;
	width: 75px;
	height:75px;
	border-radius:50px;
	font-size:2em;
}




/* button section .button font-awaesome icon */
.icon {
	background-size:contain;
	background-repeat:no-repeat;
	xwidth:25px;
	xheight:25px;
	margin-left:auto;
	margin-right:auto;
	margin-top:10px;		


	xborder:1px solid grey;
	width:100%;
	height:100%;
	margin:0px;
	display: flex;
	justify-content: center;
	align-items: center;  
	
}



.toggle-button {
	xborder:1px solid grey;
	display: inline-block;
	cursor:pointer;
	color: #a19f9f;
	font-size: 20px;
	padding: 10px;
	margin: 0px 10px 0px 10px;
	xtext-shadow: 1px 1px 0px black;
	transition: text-shadow 0.3s;
	border-radius:4px;

}

.toggle-button:hover {
	xbackground-color: rgba(191, 191, 191, 0.1);
}

/* don't show trackview button on default, show it only in mobile */
.toggle-button#btn-toggle-track-view {
	display:none;
}

/* show theme button only on desktop */
.toggle-button#btn-toggle-theme {
	display:inline-block;
}

/* show tile/row toggle button only on desktop */
.toggle-button#btn-toggle-view {
	display:inline-block;
}



#btn-previous{
	xbackground-image:url('http://chazu.arkku.net/files/pics/yt-player-pics/previous.png');
}

#btn-play-pause{	
	xbackground-image:url('http://chazu.arkku.net/files/pics/yt-player-pics/play.png');
}

#btn-stop{	
	xbackground-image:url('http://chazu.arkku.net/files/pics/yt-player-pics/stop.png');
}

#btn-next{	
	xbackground-image:url('http://chazu.arkku.net/files/pics/yt-player-pics/next.png');
}

#btn-retry-pause{	
	xbackground-image:url('http://chazu.arkku.net/files/pics/yt-player-pics/retry-pause.png');
}


#seekbar-container {
	border:1px solid red;
	width: 100%;
	width:300px;
	display:flex;
	padding:5px;

	
	display:none;
}

#seekbar-container:hover {
	background-color:rgba(255, 255, 255, 0.01);
}

#volume-container{
	width:100%;
	display:flex;
	text-shadow: 1px 1px 0px black;

}

#volume-container > #btn-mute{
	xborder:1px solid grey;
	color: #a19f9f;
	width:25px;
	xheight:25px;
	xbackground-image:url('http://chazu.arkku.net/files/pics/yt-player-pics/unmuted.png');
	xbackground-size:contain;
	xbackground-repeat:no-repeat;
	xfloat:left;	
	cursor:pointer;
	font-size:1.2em;
	text-shadow: 1px 1px 0px black;
	transition: text-shadow 0.3s;
}



#volume-container > input#vol-control{
	border:none;
	xborder:1px solid red;
	width:75%;
	cursor:pointer;	
	x-webkit-filter: grayscale(50%);
	xfilter: hue-rotate(-70deg) saturate(1.2);
	xmix-blend-mode: luminosity;
	xbox-shadow: 2px 2px 0px black;
	fill: black;
	stroke: green;

}

#volume-container > #vol-indicator {
	xborder:1px solid grey;
	display:inline-block;
	width:25px;
	color: #1db954;
	transition: text-shadow 0.3s;
}



#volume-section{
	max-width:250px;
	min-width:250px;
	width:60%;
	margin-bottom:10px;
}

#mobile-track-label{
	display:none;
	visibility:hidden;
}


#toggle-video-mobile{
    xdisplay:none;  
}



.clearfix {
	clear:both;
}




#bottom-buttons {
	xborder:1px solid red;
	xdisplay:block; 
	width:100%;
	height:20px;
	user-select: none;
	display:flex;
	justify-content: space-around;
}

.bottom-button {
	xborder: 1px solid #333333; /*189a46  333333*/
	border-radius: 5px;
	width:40%;
	height:100%;
	xmargin-bottom:0px;
	padding:10px 20px 10px 20px;

	xbackground-color:#0d0d0d;
	xcolor:#818181;
	color:rgba(255,255,255,0.2);
	font-size:1em;
	z-index:5;

	

	xtext-shadow: 1px 1px 2px black;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor:pointer;

}



.bottom-button:hover{
	xborder: 1px solid #333333;
	xbackground-color:#333333;
	color:#1db954;
}

.bottom-button:active{
	color:#126830;
}

#toggle-video-mobile {
	display:none;
}
