﻿:root {
	--breed: (100vw);
	--hoog: (100vh);
}
.lyrics {
	width: 50%;
	float: right;
	z-index: 100;
}
#audioContainer {
	position: absolute;
	right: 0;
	top: 10vh;
	width: 40vw;
	font-size:1.2em; 
	line-height:1.4em;
	z-index: 10;
	overflow: hidden;
	}
#albumTitleWrap {
	background: linear-gradient(#3caae1, #2282c3);
	background: -webkit-linear-gradient(#3caae1, #2282c3);
	background: -o-linear-gradient(#3caae1, #2282c3);
	background: -moz-linear-gradient(#3caae1, #2282c3);
	width: 40vw;
	height: 10vw;
	display: flex;
	align-items: center;
}
#albumImage {
	width: 10vw;
	height: 100%;
	position:relative;
	display: inline-block;
}
#albumTitle {
	width: 29vw;
	margin-left: 0.5vw;
	margin-right: 0.5vw;
	font-size:25px;
	text-align: center;
	color:#dddddd;
	display: inline-block;
}
#playerControl {
	background: linear-gradient(#3caae1, #2282c3);
	background: -webkit-linear-gradient(#3caae1, #2282c3);
	background: -o-linear-gradient(#3caae1, #2282c3);
	background: -moz-linear-gradient(#3caae1, #2282c3);
	position: relative;
	width: 100%;
	height: 6vh;
}

#f-play {
	position: absolute;
	display: inline-block;
	width: 10%; 
	height: auto;
	cursor: pointer;
}
#f-pause {
	position: absolute;
	display: inline-block;
	width: 10%; 
	height: auto;
	cursor: pointer;
	visibility: hidden;
}
#controlsGrid {
	position: absolute;
	display: inline-block;
	left: 11%;
	width: 100%;
	height: 6vh;
}
.controlRow {
	text-align:center;
	vertical-align:middle;
	height: 3vh;
	width: 100%;
}
#volume-slider,
#spacer,
#progress-slider {
	background-repeat: no-repeat;
	background-position: center;
	-webkit-tap-highlight-color: transparent;
	vertical-align: middle;
	height: 3vh;
	padding-top: 0.4vh;
	float: left;
}
#volume-slider,
#progress-slider {
	width: 40%;
}
#spacer {
	width: 5%;
}
#timeCell,
#volumeCell {
	width: 40%;
	background-repeat: no-repeat;
	background-position: center;
    -webkit-tap-highlight-color: transparent;
	float: left;
}
#f-vol {
	height: 25px;
	position: relative;
	color:#eeeeee;
}
/* current time and duration */
#f-time {
	height: 25px;
	padding-left: 10px;
	position: relative;
	float: left;
	color:#eeeeee;
}
#f-duration {
	height: 25px;
	position: relative;
	float: right;	
	color:#eeeeee;
}
#playlistWrap {
	position:absolute;
	right: 0px;
	top: calc(0.16*var(--hoog) + 0.1*var(--breed));
	overflow:hidden;
	width: 40vw;
	height: auto;
	background-color: #dddddd;
}
#playlist {
	list-style-type: none;
	font-size: 1.5vw;
	line-height: 2.5vw;
	margin: 0px;
	padding: 0px;
}

#playlist li {
	padding: 8px 10px 8px 10px;
	background: linear-gradient(rgba(240, 240, 240, 1),rgba(210,210,210,1));
	background: -webkit-linear-gradient(rgba(240, 240, 240, 1),rgba(210,210,210,1));
	background: -o-linear-gradient(rgba(240, 240, 240, 1),rgba(210,210,210,1));
	background: -moz-linear-gradient(rgba(240, 240, 240, 1),rgba(210,210,210,1));
	cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
#playlist li.selected {
	list-style-type: none;
	list-style-position: inside;
	font-weight: bold;
	cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.downloadPic {
	float: right;
	width: 7%;
	z-index: 5;
}
.lyricsPic {
	float: right;
	width: 7%;
	z-index: 5;
}

/* styling Input [type = range] slider
http://brennaobrien.com/blog/2014/05/style-input-type-range-in-every-browser.html
https://css-tricks.com/styling-cross-browser-compatible-range-inputs-css/
----------------------------------*/

/*	remove the default -webkit style*/
input[type=range] {
  -webkit-appearance: none; /* Hides the slider so that custom slider can be made */
  width: 100%; 				/* Specific width is required for Firefox. */
  background: transparent; 	/* Otherwise white in Chrome */
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}

input[type=range]:focus {
  outline: none; 	/* Removes the blue border. */
}

input[type=range]::-ms-track {
  width: 100%;
  cursor: pointer;

  /* Hides the slider so custom styles can be added */
  background: transparent; 
  border-color: transparent;
  color: transparent;
}
/* styling the "Thumb" */
/* Special styling for WebKit/Blink */
input[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 25px;
	height: 25px;
	background: rgba(255, 255, 255, 0);
	border: 0px;
	background-image: url('../Images/artwork/knob-s.png');
	border-radius: 12px;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.8);
	cursor: pointer;
	margin-top: -6px; /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
	margin-left: -1px;
    -webkit-tap-highlight-color: transparent;
}

/* All the same stuff for Firefox */
input[type=range]::-moz-range-thumb {
	background: rgba(255, 255, 255, 0);
	border: 0px;
	width: 25px;
	height: 25px;
	background-image:url('../Images/artwork/knob-s.png');
	border-radius: 12px;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.8);
	cursor: pointer;
	margin-top: -6px; 
	margin-left: -1px;
}

/* All the same stuff for IE */
input[type=range]::-ms-thumb {
	background: rgba(255, 255, 255, 0);
	border: 0px;
	width: 25px;
	height: 25px;
	background-image:url('../Images/artwork/knob-s.png');
	border-radius: 12px;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.8);
	cursor: pointer;
	margin-left: -1px;
}

/* styling the track*/
input[type=range]::-webkit-slider-runnable-track {
	width: 100%;
	height: 15px;
	cursor: pointer;
	border-radius: 5px;
	background: #237db4;
	border-bottom-color: #48afe3;
	border-right-color: #48afe3;
	border-left-color: #2482c0;
	border-top-color: #2482c0;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-style: solid;
	border-top-style: solid;
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-bottom-width: 1px;
    -webkit-tap-highlight-color: transparent;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #237db4;
}

input[type=range]::-moz-range-track {
	width: 100%;
	height: 15px;
	cursor: pointer;
	border-radius: 5px;
	background: #237db4;
	border-bottom-color: #48afe3;
	border-right-color: #48afe3;
	border-left-color: #2482c0;
	border-top-color: #2482c0;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-style: solid;
	border-top-style: solid;
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-bottom-width: 1px;
}

input[type=range]::-ms-track {
	width: 100%;
	height: 15px;
	cursor: pointer;
	background: transparent;
	border-color: transparent;
/*	border-width: 16px 0;*/
	color: transparent;
}
input[type=range]::-ms-fill-lower {
	background: #237db4;
	border-radius: 5px;
	border-bottom-color: #48afe3;
	border-right-color: #48afe3;
	border-left-color: #2482c0;
	border-top-color: #2482c0;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-style: solid;
	border-top-style: solid;
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-bottom-width: 1px;
}
input[type=range]:focus::-ms-fill-lower {
	background: #237db4;
}
input[type=range]::-ms-fill-upper {
	background: #237db4;
	border-radius: 5px;
	border-bottom-color: #48afe3;
	border-right-color: #48afe3;
	border-left-color: #2482c0;
	border-top-color: #2482c0;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-style: solid;
	border-top-style: solid;
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-bottom-width: 1px;
}
input[type=range]:focus::-ms-fill-upper {
	background: #237db4;
}

