html, body {
	height: 100vh;
	width: 100vw;
	margin: 0;
	padding: 0;
}

body, button, input {
	font: menu;
}

#mediaPlayer {
	height: 100%;
	width: 100%;
	position: relative;
	overflow: hidden;
}

#mainPanel {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 80px;
}

#mediaPanel {
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 0px;
	right: 250px;
	outline: 1px dotted green;
	overflow: none;
}

#mediaPanel .media-wrapper {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}

#playlistPanel {
	position: absolute;
	top: 0px;
	bottom: 0px;
	right: 0px;
	width: 250px;
	outline: 1px dotted red;
}

#playerPanel {
	position: absolute;
	height: 80px;
	outline: 1px dotted black;
	bottom: 0px;
	left: 0px;
	right: 0px;
}

/*
#playerPanel input[type=range] {
    -webkit-appearance: media-slider;
    display: flex;
    height: 2px;
    background-color: transparent;
    min-width: 25px;
    color: inherit;
    flex: 1 1 auto;
    padding: 0px;
    margin: 0px 18px;
    border: initial;
}

*/
input[type=range] {
  -webkit-appearance: none;
 /* width: 100%;
  margin: 2.5px 0; */
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.07), 0px 0px 0px rgba(13, 13, 13, 0.07);
  background: rgba(58, 88, 102, 0.78);
  border-radius: 0px;
  border: 0.1px solid #909190;
}
input[type=range]::-webkit-slider-thumb {
  box-shadow: 0.9px 0.9px 1px rgba(0, 0, 0, 0.07), 0px 0px 0.9px rgba(13, 13, 13, 0.07);
  border: 1px solid rgba(0, 0, 20, 0.22);
  height: 10px;
  width: 1px;
  border-radius: 10px;
  background: #897d61;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -2.6px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: rgba(73, 110, 128, 0.78);
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.07), 0px 0px 0px rgba(13, 13, 13, 0.07);
  background: rgba(58, 88, 102, 0.78);
  border-radius: 0px;
  border: 0.1px solid #909190;
}
input[type=range]::-moz-range-thumb {
  box-shadow: 0.9px 0.9px 1px rgba(0, 0, 0, 0.07), 0px 0px 0.9px rgba(13, 13, 13, 0.07);
  border: 1px solid rgba(0, 0, 20, 0.22);
  height: 10px;
  width: 1px;
  border-radius: 10px;
  background: #897d61;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: rgba(43, 66, 76, 0.78);
  border: 0.1px solid #909190;
  border-radius: 0px;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.07), 0px 0px 0px rgba(13, 13, 13, 0.07);
}
input[type=range]::-ms-fill-upper {
  background: rgba(58, 88, 102, 0.78);
  border: 0.1px solid #909190;
  border-radius: 0px;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.07), 0px 0px 0px rgba(13, 13, 13, 0.07);
}
input[type=range]::-ms-thumb {
  box-shadow: 0.9px 0.9px 1px rgba(0, 0, 0, 0.07), 0px 0px 0.9px rgba(13, 13, 13, 0.07);
  border: 1px solid rgba(0, 0, 20, 0.22);
  height: 10px;
  width: 1px;
  border-radius: 10px;
  background: #897d61;
  cursor: pointer;
  height: 5px;
}
input[type=range]:focus::-ms-fill-lower {
  background: rgba(58, 88, 102, 0.78);
}
input[type=range]:focus::-ms-fill-upper {
  background: rgba(73, 110, 128, 0.78);
}
